1 | <?php |
||
8 | abstract class User extends BaseUser |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | * |
||
13 | * @ORM\Column(name="created", type="datetime", nullable=false) |
||
14 | */ |
||
15 | protected $created; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | * |
||
20 | * @ORM\Column(name="activated", type="boolean") |
||
21 | */ |
||
22 | protected $activated; |
||
23 | |||
24 | public function __construct() |
||
31 | |||
32 | public function getWSSEToken() |
||
47 | |||
48 | public function __toString() |
||
52 | |||
53 | public function getParent() |
||
57 | |||
58 | /** |
||
59 | * Gets the value of created. |
||
60 | * |
||
61 | * @return string |
||
62 | */ |
||
63 | public function getCreated() |
||
67 | |||
68 | /** |
||
69 | * Sets the value of created. |
||
70 | * |
||
71 | * @param string $created the created |
||
72 | * |
||
73 | * @return self |
||
74 | */ |
||
75 | public function setCreated($created) |
||
81 | |||
82 | /** |
||
83 | * Gets the value of activated. |
||
84 | * |
||
85 | * @return string |
||
86 | */ |
||
87 | public function getActivated() |
||
91 | |||
92 | /** |
||
93 | * Sets the value of activated. |
||
94 | * |
||
95 | * @param string $activated the activated |
||
96 | * |
||
97 | * @return self |
||
98 | */ |
||
99 | public function setActivated($activated) |
||
105 | } |
||
106 |
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..