|
1
|
|
|
<?php |
|
2
|
|
|
declare(strict_types = 1); |
|
3
|
|
|
/** |
|
4
|
|
|
* |
|
5
|
|
|
* Copyright (C) 2018 Ross Mitchell |
|
6
|
|
|
* |
|
7
|
|
|
* This file is part of RossMitchell/UpdateCloudFlare. |
|
8
|
|
|
* |
|
9
|
|
|
* RossMitchell/UpdateCloudFlare is free software: you can redistribute |
|
10
|
|
|
* it and/or modify it under the terms of the GNU General Public License |
|
11
|
|
|
* as published by the Free Software Foundation, either version 3 of the |
|
12
|
|
|
* License, or (at your option) any later version. |
|
13
|
|
|
* |
|
14
|
|
|
* This program is distributed in the hope that it will be useful, |
|
15
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
16
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
17
|
|
|
* GNU General Public License for more details. |
|
18
|
|
|
* |
|
19
|
|
|
* You should have received a copy of the GNU General Public License |
|
20
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
21
|
|
|
*/ |
|
22
|
|
|
|
|
23
|
|
|
namespace RossMitchell\UpdateCloudFlare\Factories\Responses; |
|
24
|
|
|
|
|
25
|
|
|
use RossMitchell\UpdateCloudFlare\Exceptions\CloudFlareException; |
|
26
|
|
|
use RossMitchell\UpdateCloudFlare\Factories\Responses\Results\ListZoneResultsFactory; |
|
27
|
|
|
use RossMitchell\UpdateCloudFlare\Responses\ListZones; |
|
28
|
|
|
use Symfony\Component\Console\Exception\LogicException; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* Class ListZoneFactory |
|
32
|
|
|
* @package RossMitchell\UpdateCloudFlare\Factories\Responses |
|
33
|
|
|
*/ |
|
34
|
|
|
class ListZoneFactory |
|
35
|
|
|
{ |
|
36
|
|
|
/** |
|
37
|
|
|
* @var ListZoneResultsFactory |
|
38
|
|
|
*/ |
|
39
|
|
|
private $zoneResultsFactory; |
|
40
|
|
|
/** |
|
41
|
|
|
* @var ErrorFactory |
|
42
|
|
|
*/ |
|
43
|
|
|
private $errorFactory; |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* ListZoneFactory constructor. |
|
47
|
|
|
* |
|
48
|
|
|
* @param ListZoneResultsFactory $zoneResultsFactory |
|
49
|
|
|
* @param ErrorFactory $errorFactory |
|
50
|
|
|
*/ |
|
51
|
16 |
|
public function __construct(ListZoneResultsFactory $zoneResultsFactory, ErrorFactory $errorFactory) |
|
52
|
|
|
{ |
|
53
|
16 |
|
$this->zoneResultsFactory = $zoneResultsFactory; |
|
54
|
16 |
|
$this->errorFactory = $errorFactory; |
|
55
|
16 |
|
} |
|
56
|
|
|
|
|
57
|
|
|
/** |
|
58
|
|
|
* @param \stdClass $data |
|
59
|
|
|
* |
|
60
|
|
|
* @return ListZones |
|
61
|
|
|
* @throws CloudFlareException |
|
62
|
|
|
* @throws LogicException |
|
63
|
|
|
*/ |
|
64
|
16 |
|
public function create(\stdClass $data): ListZones |
|
65
|
|
|
{ |
|
66
|
16 |
|
return new ListZones($this->zoneResultsFactory, $this->errorFactory, $data); |
|
67
|
|
|
} |
|
68
|
|
|
} |
|
69
|
|
|
|