Update Cli.php

This commit is contained in:
Max Kozlov 2018-09-08 01:37:33 +03:00 committed by GitHub
parent a55e32b1a1
commit 65591c829f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -151,7 +151,9 @@ class Cli extends ApplicationBootstrap
if ($this->showBenchmark) {
Benchmark::dump();
}
if ($result === FALSE) exit(1);
if (false === $result) {
exit(1);
}
}
protected function dispatchEndless()