1 | <?php |
||
14 | abstract class AbstractElement implements Element |
||
15 | { |
||
16 | use Properties; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $view; |
||
22 | |||
23 | /** |
||
24 | * @var MenuRender |
||
25 | */ |
||
26 | protected $render; |
||
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | */ |
||
31 | public function getView() |
||
35 | |||
36 | /** |
||
37 | * @inheritdoc |
||
38 | */ |
||
39 | public function setView($view) |
||
45 | |||
46 | 3 | protected function propertiesForSerialization() |
|
52 | |||
53 | /** |
||
54 | * @inheritDoc |
||
55 | */ |
||
56 | 3 | public function toArray() |
|
62 | |||
63 | /** |
||
64 | * @inheritDoc |
||
65 | */ |
||
66 | 3 | public function serialize() |
|
70 | |||
71 | /** |
||
72 | * @inheritDoc |
||
73 | */ |
||
74 | 2 | public function unserialize($serialized) |
|
95 | } |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.