Completed
Push — master ( bff5f7...caa188 )
by Lena
12:09
created

Rollout::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
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
}