Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | class PageFactory implements PageFactoryInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var HttpClientInterface |
||
18 | */ |
||
19 | private $httpClient; |
||
20 | |||
21 | /** |
||
22 | * @param HttpClientInterface $httpClient |
||
23 | */ |
||
24 | public function __construct(HttpClientInterface $httpClient) |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @inheritDoc |
||
31 | */ |
||
32 | public function createPage( |
||
52 |