Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Contacts |
||
14 | { |
||
15 | /** |
||
16 | * @var ClientInterface |
||
17 | */ |
||
18 | private $client; |
||
19 | |||
20 | /** |
||
21 | * @var UserFactory |
||
22 | */ |
||
23 | private $factory; |
||
24 | |||
25 | /** |
||
26 | * Contacts constructor. |
||
27 | * |
||
28 | * @param ClientInterface $client |
||
29 | * @param UserFactory $factory |
||
30 | */ |
||
31 | public function __construct(ClientInterface $client, UserFactory $factory) |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @return \Polidog\Chatwork\Entity\Collection\CollectionInterface |
||
39 | */ |
||
40 | public function show() |
||
47 |