Rollout   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 13
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace QueerCodingGirl\Rollout;
4
5
use QueerCodingGirl\Rollout\Feature\FeatureFactoryAbstract;
6
use QueerCodingGirl\Rollout\Interfaces\KeyValueStorageInterface;
7
8
/**
9
 * Class Rollout
10
 * @package QueerCodingGirl\Rollout
11
 */
12
class Rollout extends RolloutAbstract
13
{
14
15
    /**
16
     * @param KeyValueStorageInterface $storage
17
     * @param FeatureFactoryAbstract $featureFactory
18
     */
19
    public function __construct(KeyValueStorageInterface $storage, FeatureFactoryAbstract $featureFactory)
20
    {
21
        $this->storage = $storage;
22
        $this->featureFactory = $featureFactory;
23
    }
24
}