1 | <?php |
||
18 | abstract class AbstractNavigationBar implements NavigationBarInterface |
||
19 | { |
||
20 | use GridButtonPluginManagerAwareTrait; |
||
21 | |||
22 | /** |
||
23 | * Кнопки бара |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $buttons = []; |
||
27 | |||
28 | /** |
||
29 | * Опции бара |
||
30 | * @var array |
||
31 | */ |
||
32 | protected $options = []; |
||
33 | |||
34 | /** |
||
35 | * @param array $options |
||
36 | * @throws Exception\InvalidArgumentException |
||
37 | */ |
||
38 | public function __construct($options = []) |
||
50 | |||
51 | |||
52 | /** |
||
53 | * добавить кнопку |
||
54 | * @param ButtonInterface | array | ArrayAccess $button |
||
55 | * @return $this |
||
56 | * @throws Button\Exception\InvalidButtonException |
||
57 | * @throws Exception\InvalidArgumentException |
||
58 | * @throws Exception\RuntimeException |
||
59 | */ |
||
60 | public function add($button) |
||
82 | |||
83 | /** |
||
84 | * удалить кнопку |
||
85 | * @param $name |
||
86 | * @return $this |
||
87 | */ |
||
88 | public function remove($name) |
||
93 | |||
94 | /** |
||
95 | * получить кнопки бара |
||
96 | * @return array |
||
97 | */ |
||
98 | public function getButtons() |
||
102 | |||
103 | /** |
||
104 | * установить кнопки бара |
||
105 | * @param array $buttons |
||
106 | * @return $this |
||
107 | */ |
||
108 | public function setButtons($buttons) |
||
113 | |||
114 | /** |
||
115 | * @return array |
||
116 | */ |
||
117 | public function getOptions() |
||
121 | |||
122 | /** |
||
123 | * @param array $options |
||
124 | * @return $this |
||
125 | */ |
||
126 | public function setOptions($options) |
||
131 | } |
||
132 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: