1 | <?php |
||
33 | trait NodeTrait |
||
34 | { |
||
35 | |||
36 | /** |
||
37 | * @var string node path in dot notation |
||
38 | */ |
||
39 | protected $nodePath; |
||
40 | |||
41 | /** |
||
42 | * @var array node path in matrix notation |
||
43 | */ |
||
44 | protected $nodeMatrix; |
||
45 | |||
46 | /** |
||
47 | * @return string node path in dot notation |
||
48 | * @since XXX |
||
49 | */ |
||
50 | public function getPath() |
||
54 | |||
55 | /** |
||
56 | * @param string $path node path in dot notation (1.1.2) |
||
57 | * @return static |
||
58 | * @since XXX |
||
59 | */ |
||
60 | public function setPath($path) |
||
65 | |||
66 | /** |
||
67 | * @return array node path in matrix notation |
||
68 | * @since XXX |
||
69 | */ |
||
70 | public function getMatrix() |
||
74 | |||
75 | /** |
||
76 | * Create a node object from a matrix |
||
77 | * @param array $matrix node path in matrix notation [a, b, c, d] |
||
78 | * @return static |
||
79 | * @since XXX |
||
80 | */ |
||
81 | public function setMatrix($matrix) |
||
90 | |||
91 | /** |
||
92 | * @return float left border |
||
93 | * @since XXX |
||
94 | */ |
||
95 | public function getLeft() |
||
99 | |||
100 | /** |
||
101 | * @return float right border |
||
102 | * @since XXX |
||
103 | */ |
||
104 | public function getRight() |
||
108 | |||
109 | /** |
||
110 | * Check if we can perform selected move |
||
111 | * @param string $fromPath original Path |
||
112 | * @param string $toPath new Path |
||
113 | * @return bool |
||
114 | * @since XXX |
||
115 | */ |
||
116 | public function canMove($fromPath, $toPath) |
||
120 | |||
121 | /** |
||
122 | * Move current node from one path to another |
||
123 | * @param string $fromPath original Path |
||
124 | * @param string $toPath new Path |
||
125 | * @param int $bump offset if we need to re-key the path |
||
126 | * @return boolean |
||
127 | * @since XXX |
||
128 | */ |
||
129 | public function move($fromPath, $toPath, $bump = 0) |
||
143 | |||
144 | } |
||
145 |
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..