| 1 | <?php |
||
| 15 | class RunHandler |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * $runner. |
||
| 19 | * @var Runner |
||
| 20 | */ |
||
| 21 | protected $runner; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Constructor. |
||
| 25 | * @param Runner $runner |
||
| 26 | */ |
||
| 27 | public function __construct(Runner $runner) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * handle. |
||
| 34 | * @param Args $args |
||
| 35 | * @param IO $io |
||
| 36 | * @param Command $command |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | public function handle(Args $args, IO $io, Command $command) |
||
| 45 | } |
||
| 46 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.