| 1 | <?php |
||
| 8 | class ClearCacheCommand extends Command |
||
| 9 | { |
||
| 10 | protected $signature = 'scaffolder:clear {what=all}'; |
||
| 11 | |||
| 12 | protected $description = 'Clear generated files like cache, json, drafts'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Execute the Command. |
||
| 16 | */ |
||
| 17 | public function handle() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Execute the command for compiled cache files. |
||
| 41 | */ |
||
| 42 | public function handleCache() |
||
| 63 | |||
| 64 | |||
| 65 | /** |
||
| 66 | * Execute the command for drafts files and folder. |
||
| 67 | */ |
||
| 68 | public function handleDrafts() |
||
| 74 | } |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.