aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/Parsers/ArgumentParser.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/Parsers/ArgumentParser.php')
-rw-r--r--core/namespace/Parsers/ArgumentParser.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/namespace/Parsers/ArgumentParser.php b/core/namespace/Parsers/ArgumentParser.php
index ab32fe1..4ac3b9c 100644
--- a/core/namespace/Parsers/ArgumentParser.php
+++ b/core/namespace/Parsers/ArgumentParser.php
@@ -10,8 +10,8 @@ class ArgumentParser implements ParserInterface {
foreach(explode('|', $text) as $delimiter) {
$part = explode('=', $delimiter);
- $argumentK = $part[0] ?? NULL;
- $argumentV = $part[1] ?? TRUE;
+ $argumentK = $part[0] ?? null;
+ $argumentV = $part[1] ?? true;
if(preg_match('#^[[:word:]]+$#', $argumentK)) {
$arguments[strtoupper($argumentK)] = $argumentV;