1 | <?php |
||
10 | class TailCommand extends Command |
||
11 | { |
||
12 | protected $signature = 'tail {--lines=100}'; |
||
13 | |||
14 | protected $description = 'Tail the latest logfile'; |
||
15 | |||
16 | public function handle() |
||
38 | |||
39 | protected function findLatestLogFile(string $directory) |
||
51 | |||
52 | protected function executeCommand($command) |
||
58 | } |
||
59 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.