Skip to content

Commit 37b3d30

Browse files
committed
update parser
1 parent 12896ac commit 37b3d30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CommandLineParser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function __construct(mixed $parser = null)
1616

1717
$filename = __DIR__ . "/../docopt.txt";
1818
if (file_exists($filename)) {
19-
$handler = fopen($filename, 'r') ?? NULL;
19+
$handler = fopen($filename, 'r') ?? null;
2020
$filesize = filesize($filename) ?? 0;
2121
if (!is_null($handler)) {
2222
$this->parserDescriptor = fread($handler, $filesize) ?? "";

0 commit comments

Comments
 (0)