| 1 | <?php |
||
| 34 | trait SoulTrait |
||
| 35 | { |
||
| 36 | /** |
||
| 37 | * Disable Clone |
||
| 38 | * |
||
| 39 | * @return boolean |
||
| 40 | */ |
||
| 41 | public function __clone() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Instance Handle |
||
| 48 | * |
||
| 49 | * @var array |
||
| 50 | */ |
||
| 51 | protected static $_soul; |
||
| 52 | |||
| 53 | /** |
||
| 54 | * get singleton |
||
| 55 | * |
||
| 56 | * @return object |
||
| 57 | */ |
||
| 58 | 5 | public static function getSoul() |
|
| 66 | |||
| 67 | } |
||
| 68 |
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..