Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danielstjules committed Mar 24, 2016
1 parent 8f2a0c0 commit b0f37bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pho.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,10 @@ function expandPaths($paths)
if (!file_exists($bootstrap)) {
$console->writeLn("Bootstrap file not found: $bootstrap");
exit(1);
} else if(!is_readable($bootstrap)) {
} else if (!is_readable($bootstrap)) {
$console->writeLn("Bootstrap file not readable: $bootstrap");
exit(1);
} else if(!@include_once($bootstrap)) {
} else if (!@include_once($bootstrap)) {
$console->writeLn("Unable to include bootstrap: $bootstrap");
exit(1);
}
Expand Down

0 comments on commit b0f37bf

Please sign in to comment.