1 | <?php |
||
27 | class Escher |
||
28 | { |
||
29 | /** |
||
30 | * Drawing Group Container |
||
31 | * |
||
32 | * @var \DggContainer |
||
33 | */ |
||
34 | private $dggContainer; |
||
35 | |||
36 | /** |
||
37 | * Drawing Container |
||
38 | * |
||
39 | * @var Escher\DgContainer |
||
40 | */ |
||
41 | private $dgContainer; |
||
42 | |||
43 | /** |
||
44 | * Get Drawing Group Container |
||
45 | * |
||
46 | * @return Escher\DgContainer |
||
47 | */ |
||
48 | 2 | public function getDggContainer() |
|
52 | |||
53 | /** |
||
54 | * Set Drawing Group Container |
||
55 | * |
||
56 | * @param Escher\DggContainer $dggContainer |
||
57 | */ |
||
58 | 10 | public function setDggContainer($dggContainer) |
|
62 | |||
63 | /** |
||
64 | * Get Drawing Container |
||
65 | * |
||
66 | * @return Escher\DgContainer |
||
67 | */ |
||
68 | 2 | public function getDgContainer() |
|
72 | |||
73 | /** |
||
74 | * Set Drawing Container |
||
75 | * |
||
76 | * @param Escher\DgContainer $dgContainer |
||
77 | */ |
||
78 | 10 | public function setDgContainer($dgContainer) |
|
82 | } |
||
83 |
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..