| 1 | <?php |
||
| 11 | class ClassifyStrings extends Command |
||
| 12 | { |
||
| 13 | use LogsErrors; |
||
| 14 | |||
| 15 | public static $checkedCallsNum = 0; |
||
| 16 | |||
| 17 | protected $signature = 'check:stringy_classes'; |
||
| 18 | |||
| 19 | protected $description = 'Replaces string references with ::class version of them'; |
||
| 20 | |||
| 21 | public function handle(ErrorPrinter $errorPrinter) |
||
| 35 | } |
||
| 36 |