1 | <?php |
||
17 | abstract class AbstractSearchBuilder implements SearchBuilderInterface |
||
18 | { |
||
19 | /** |
||
20 | * @return mixed|string |
||
21 | */ |
||
22 | public function __toString() |
||
26 | |||
27 | /** |
||
28 | * @param array $properties |
||
29 | */ |
||
30 | public function __construct(array $properties = []) |
||
34 | |||
35 | /** |
||
36 | * @param array $properties |
||
37 | * @return static |
||
38 | */ |
||
39 | public function populate(array $properties = []) |
||
51 | |||
52 | /** |
||
53 | * @inheritdoc |
||
54 | */ |
||
55 | public function hasProperty($name, $checkVars = true): bool |
||
59 | |||
60 | /** |
||
61 | * @inheritdoc |
||
62 | */ |
||
63 | public function canGetProperty($name, $checkVars = true): bool |
||
67 | |||
68 | /** |
||
69 | * @inheritdoc |
||
70 | */ |
||
71 | public function canSetProperty($name, $checkVars = true): bool |
||
75 | |||
76 | /** |
||
77 | * @inheritdoc |
||
78 | */ |
||
79 | public function hasMethod($name): bool |
||
83 | |||
84 | /** |
||
85 | * @param $name |
||
86 | * @return mixed |
||
87 | * @throws InvalidArgumentException |
||
88 | */ |
||
89 | public function __get($name) |
||
100 | |||
101 | /** |
||
102 | * @param $name |
||
103 | * @param $value |
||
104 | * @throws InvalidArgumentException |
||
105 | */ |
||
106 | public function __set($name, $value) |
||
117 | |||
118 | /** |
||
119 | * @param $name |
||
120 | * @return bool |
||
121 | */ |
||
122 | public function __isset($name) |
||
131 | |||
132 | /** |
||
133 | * @param $name |
||
134 | * @throws InvalidArgumentException |
||
135 | */ |
||
136 | public function __unset($name) |
||
145 | |||
146 | /** |
||
147 | * @param $name |
||
148 | * @param $params |
||
149 | * @throws InvalidArgumentException |
||
150 | */ |
||
151 | public function __call($name, $params) |
||
155 | } |
||
156 |