1 | <?php |
||
17 | abstract class AbstractSearchBuilder implements SearchBuilderInterface |
||
18 | { |
||
19 | /** |
||
20 | * @return mixed|string |
||
21 | */ |
||
22 | public function __toString() |
||
26 | |||
27 | /** |
||
28 | * @return array |
||
29 | */ |
||
30 | public function toConfig(): array |
||
36 | |||
37 | /** |
||
38 | * @param array $properties |
||
39 | */ |
||
40 | public function __construct(array $properties = []) |
||
44 | |||
45 | /** |
||
46 | * @param array $properties |
||
47 | * @return static |
||
48 | */ |
||
49 | public function populate(array $properties = []) |
||
61 | |||
62 | /** |
||
63 | * @inheritdoc |
||
64 | */ |
||
65 | public function hasProperty($name, $checkVars = true): bool |
||
69 | |||
70 | /** |
||
71 | * @inheritdoc |
||
72 | */ |
||
73 | public function canGetProperty($name, $checkVars = true): bool |
||
77 | |||
78 | /** |
||
79 | * @inheritdoc |
||
80 | */ |
||
81 | public function canSetProperty($name, $checkVars = true): bool |
||
85 | |||
86 | /** |
||
87 | * @inheritdoc |
||
88 | */ |
||
89 | public function hasMethod($name): bool |
||
93 | |||
94 | /** |
||
95 | * @param $name |
||
96 | * @return mixed |
||
97 | * @throws InvalidArgumentException |
||
98 | */ |
||
99 | public function __get($name) |
||
110 | |||
111 | /** |
||
112 | * @param $name |
||
113 | * @param $value |
||
114 | * @throws InvalidArgumentException |
||
115 | */ |
||
116 | public function __set($name, $value) |
||
127 | |||
128 | /** |
||
129 | * @param $name |
||
130 | * @return bool |
||
131 | */ |
||
132 | public function __isset($name) |
||
141 | |||
142 | /** |
||
143 | * @param $name |
||
144 | * @throws InvalidArgumentException |
||
145 | */ |
||
146 | public function __unset($name) |
||
155 | |||
156 | /** |
||
157 | * @param $name |
||
158 | * @param $params |
||
159 | * @throws InvalidArgumentException |
||
160 | */ |
||
161 | public function __call($name, $params) |
||
165 | } |
||
166 |