1 | <?php |
||
20 | class Configuration implements ConfigurationInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var string[] |
||
24 | */ |
||
25 | 25 | private $lockingStorageAliases = []; |
|
26 | |||
27 | 25 | /** |
|
28 | * @param \string[] $lockingStorageAliases |
||
29 | 25 | */ |
|
30 | 25 | public function __construct(array $lockingStorageAliases) |
|
34 | 25 | ||
35 | 25 | /** |
|
36 | 25 | * {@inheritdoc} |
|
37 | 25 | */ |
|
38 | 25 | public function getConfigTreeBuilder() |
|
87 | |||
88 | /** |
||
89 | * Returns id for given storage-alias. |
||
90 | * |
||
91 | * @param string $alias |
||
92 | * |
||
93 | * @return string |
||
94 | */ |
||
95 | public function getLockingStorageId($alias) |
||
99 | } |
||
100 |
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..