PlanFactory   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 3
dl 0
loc 32
ccs 9
cts 9
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A create() 0 9 2
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\Results;
24
25
use RossMitchell\UpdateCloudFlare\Helpers\Hydrator;
26
use RossMitchell\UpdateCloudFlare\Responses\Results\Plan;
27
use Symfony\Component\Console\Exception\LogicException;
28
29
/**
30
 * Class PlanFactory
31
 * @package RossMitchell\UpdateCloudFlare\Factories\Responses\Results
32
 */
33
class PlanFactory
34
{
35
    /**
36
     * @var Hydrator
37
     */
38
    private $hydrator;
39
40
    /**
41
     * PlanFactory constructor.
42
     *
43
     * @param Hydrator $hydrator
44
     */
45 66
    public function __construct(Hydrator $hydrator)
46
    {
47 66
        $this->hydrator = $hydrator;
48 66
    }
49
50
    /**
51
     * @param \stdClass $data
52
     *
53
     * @return Plan
54
     * @throws LogicException
55
     */
56 43
    public function create(\stdClass $data): Plan
57
    {
58 43
        $plan       = new Plan();
59 43
        $properties = ['id', 'name', 'price', 'currency', 'frequency', 'legacy_id', 'is_subscribed', 'can_subscribe'];
60 43
        foreach ($properties as $property) {
61 43
            $this->hydrator->setProperty($plan, $data, $property);
62
        }
63
64 35
        return $plan;
65
    }
66
}
67