Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | abstract class Property { |
||
8 | |||
9 | /** @var string[] */ |
||
10 | protected $claim; |
||
11 | |||
12 | /** @var string */ |
||
13 | protected $lang; |
||
14 | |||
15 | /** @var CacheItemPoolInterface */ |
||
16 | protected $cache; |
||
17 | |||
18 | /** |
||
19 | * @param string $claim The claim data array. |
||
20 | * @param string $lang The language code. |
||
21 | * @param CacheItemPoolInterface $cache |
||
22 | */ |
||
23 | public function __construct( array $claim, $lang, CacheItemPoolInterface $cache ) { |
||
24 | $this->claim = $claim; |
||
25 | $this->lang = $lang; |
||
26 | $this->cache = $cache; |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @return Reference[] |
||
31 | */ |
||
32 | public function getReferences() { |
||
41 | } |
||
42 | } |
||
43 |