Skip to content

Commit

Permalink
new assert style
Browse files Browse the repository at this point in the history
  • Loading branch information
razzed committed Oct 7, 2020
1 parent 84d4dd4 commit 6d2cf7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/Command/Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public function run() {
}

$args = $_SERVER['argv'];
assert('is_array($args)');
assert(is_array($args));
$args = $this->fix_zend_studio_arguments($args);
$args = $this->argument_sugar($args);
$this->command = array_shift($args);
Expand Down

0 comments on commit 6d2cf7a

Please sign in to comment.