| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | public function handle(): int |
||
| 34 | { |
||
| 35 | $this->startClock(); |
||
| 36 | |||
| 37 | $this->info('Running validation tests!'); |
||
| 38 | |||
| 39 | $this->newLine(); |
||
| 40 | |||
| 41 | foreach (ValidationService::checks() as $check) { |
||
| 42 | $this->runCheck($check); |
||
| 43 | } |
||
| 44 | |||
| 45 | $this->info("All done! {$this->timeTotal()}"); |
||
| 46 | |||
| 47 | return Command::SUCCESS; |
||
| 48 | } |
||
| 72 |