1 | <?php |
||
7 | class AuraSessionDriver implements StorageInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var \Aura\Session\Session |
||
11 | */ |
||
12 | protected $session; |
||
13 | |||
14 | /** |
||
15 | * Constructor. |
||
16 | * |
||
17 | * @param \Aura\Session\Session $session |
||
18 | */ |
||
19 | 6 | public function __construct(Session $session) |
|
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | 6 | public function get($identifier) |
|
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | 6 | public function store($identifier, $data) |
|
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | 3 | public function clear($identifier) |
|
47 | } |
||
48 |
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..