Skip to content

Commit 4ca7446

Browse files
authored
Merge pull request #17 from SvenRtbg/patch-2
Fix PHP5.3 error
2 parents 80bd36b + 75439a8 commit 4ca7446

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/docopt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1367,7 +1367,7 @@ function handle($doc, $argv=null)
13671367
}
13681368
catch (ExitException $ex) {
13691369
$this->handleExit($ex);
1370-
return new Response([], $ex->status, $ex->getMessage());
1370+
return new Response(array(), $ex->status, $ex->getMessage());
13711371
}
13721372
}
13731373

0 commit comments

Comments
 (0)