| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function getSolutions(Throwable $throwable): array |
||
| 22 | { |
||
| 23 | return [ |
||
| 24 | BaseSolution::create('Laravel Dusk should not be run in production.') |
||
| 25 | ->setSolutionDescription('Install the dependencies with the `--no-dev` flag.'), |
||
| 26 | BaseSolution::create('Laravel Dusk can be run in other environments.') |
||
| 27 | ->setSolutionDescription('Consider setting the `APP_ENV` to something other than `production` like `local` for example.'), |
||
| 28 | ]; |
||
| 29 | } |
||
| 30 | } |
||
| 31 |