| Total Complexity | 2 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Tasks |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var ClientInterface |
||
| 15 | */ |
||
| 16 | private $client; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var TaskFactory |
||
| 20 | */ |
||
| 21 | private $factory; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Tasks constructor. |
||
| 25 | * |
||
| 26 | * @param ClientInterface $client |
||
| 27 | * @param TaskFactory $factory |
||
| 28 | */ |
||
| 29 | public function __construct(ClientInterface $client, TaskFactory $factory) |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param array $options |
||
| 37 | * |
||
| 38 | * @return CollectionInterface |
||
| 39 | */ |
||
| 40 | public function show(array $options = []) |
||
| 47 |