@@ -62,6 +62,9 @@ |
||
| 62 | 62 | return $options; |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | + /** |
|
| 66 | + * @return string |
|
| 67 | + */ |
|
| 65 | 68 | protected function getConfigFileLocation() |
| 66 | 69 | { |
| 67 | 70 | $configNames = [ |
@@ -2,13 +2,13 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Spatie\PhpUnitWatcher; |
| 4 | 4 | |
| 5 | -use Symfony\Component\Yaml\Yaml; |
|
| 5 | +use Spatie\PhpUnitWatcher\Exceptions\InvalidConfigfile; |
|
| 6 | 6 | use Symfony\Component\Console\Command\Command; |
| 7 | -use Symfony\Component\Console\Style\SymfonyStyle; |
|
| 8 | 7 | use Symfony\Component\Console\Input\InputArgument; |
| 9 | 8 | use Symfony\Component\Console\Input\InputInterface; |
| 10 | 9 | use Symfony\Component\Console\Output\OutputInterface; |
| 11 | -use Spatie\PhpUnitWatcher\Exceptions\InvalidConfigfile; |
|
| 10 | +use Symfony\Component\Console\Style\SymfonyStyle; |
|
| 11 | +use Symfony\Component\Yaml\Yaml; |
|
| 12 | 12 | |
| 13 | 13 | class WatcherCommand extends Command |
| 14 | 14 | { |