1 | <?php |
||
20 | class Configuration implements ConfigurationInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var string[] |
||
24 | */ |
||
25 | private $lockingStorageAliases = []; |
||
26 | |||
27 | /** |
||
28 | * @param \string[] $lockingStorageAliases |
||
29 | */ |
||
30 | 25 | public function __construct(array $lockingStorageAliases) |
|
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | 25 | public function getConfigTreeBuilder() |
|
88 | |||
89 | /** |
||
90 | * Returns id for given storage-alias. |
||
91 | * |
||
92 | * @param string $alias |
||
93 | * |
||
94 | * @return string |
||
95 | */ |
||
96 | 25 | public function getLockingStorageId($alias) |
|
100 | } |
||
101 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..