| 1 | <?php |
||
| 16 | class My |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var ClientInterface |
||
| 20 | */ |
||
| 21 | private $client; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * M constructor. |
||
| 25 | * |
||
| 26 | * @param ClientInterface $client |
||
| 27 | */ |
||
| 28 | public function __construct(ClientInterface $client) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return Status |
||
| 35 | */ |
||
| 36 | public function status(): Status |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param array $options |
||
| 43 | * |
||
| 44 | * @return Tasks |
||
| 45 | */ |
||
| 46 | public function tasks(array $options = []): Tasks |
||
| 50 | } |
||
| 51 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.