Skip to content

Commit

Permalink
Fix phpstan error.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Mar 2, 2018
1 parent a09caaf commit 07ee474
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Shell/Task/LoadTask.php
Expand Up @@ -56,7 +56,9 @@ public function main($plugin = null)

$app = APP . 'Application.php';
if (file_exists($app) && !$this->param('no_app')) {
return $this->modifyApplication($app, $plugin, $options);
$this->modifyApplication($app, $plugin, $options);

return true;
}

return $this->_modifyBootstrap($plugin, $options);
Expand Down

0 comments on commit 07ee474

Please sign in to comment.