| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class Status |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ClientInterface |
||
| 14 | */ |
||
| 15 | private $client; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var StatusFactory |
||
| 19 | */ |
||
| 20 | private $factory; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Status constructor. |
||
| 24 | * |
||
| 25 | * @param ClientInterface $client |
||
| 26 | * @param StatusFactory $factory |
||
| 27 | */ |
||
| 28 | public function __construct(ClientInterface $client, StatusFactory $factory) |
||
| 32 | } |
||
| 33 | |||
| 34 | public function show() |
||
| 41 |