Skip to content

Commit

Permalink
Apply fixes from StyleCI (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored Aug 5, 2017
1 parent 11f6e5a commit aa4637e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/WatcherCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

class WatcherCommand extends Command
{
const PHPUNIT_WATCH_CONFIG_FILENAME = "/.phpunit-watcher.yml";
const PHPUNIT_WATCH_CONFIG_FILENAME = '/.phpunit-watcher.yml';

protected function configure()
{
Expand Down Expand Up @@ -57,7 +57,7 @@ protected function getConfigFileLocation()

$configDirectory = getcwd();

while(is_dir($configDirectory)) {
while (is_dir($configDirectory)) {
$configFullPath = "{$configDirectory}/{$configName}";

if (file_exists($configFullPath)) {
Expand All @@ -68,7 +68,7 @@ protected function getConfigFileLocation()
return;
}
$configDirectory = dirname($configDirectory);
};
}
}

protected function displayOptions(array $options, InputInterface $input, OutputInterface $output)
Expand Down

0 comments on commit aa4637e

Please sign in to comment.