1 | <?php |
||
23 | class UserSaveOptions { |
||
24 | |||
25 | /** |
||
26 | * @var TableUpdater |
||
27 | */ |
||
28 | private $tableUpdater; |
||
29 | |||
30 | /** |
||
31 | * @var User |
||
32 | */ |
||
33 | private $user; |
||
34 | |||
35 | /** |
||
36 | * @var array |
||
37 | */ |
||
38 | private $options; |
||
39 | |||
40 | /** |
||
41 | * @since 1.0 |
||
42 | * |
||
43 | * @param TableUpdater $tableUpdater |
||
44 | * @param User $user |
||
45 | * @param array &$options |
||
46 | */ |
||
47 | 4 | public function __construct( TableUpdater $tableUpdater, User $user, array &$options ) { |
|
52 | |||
53 | /** |
||
54 | * @since 1.0 |
||
55 | * |
||
56 | * @return boolean |
||
57 | */ |
||
58 | 3 | public function execute() { |
|
70 | |||
71 | 3 | protected function performUpdate( array $groupIds ) { |
|
77 | |||
78 | } |
||
79 |
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..