1 | <?php |
||
19 | abstract class AbstractForm extends Fieldset implements FormInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var SubjectFilter |
||
23 | */ |
||
24 | protected $filter; |
||
25 | |||
26 | /** |
||
27 | * @var null | array |
||
28 | */ |
||
29 | protected $errorMessages; |
||
30 | |||
31 | /** |
||
32 | * @var HelperLocator |
||
33 | */ |
||
34 | protected $helper; |
||
35 | |||
36 | /** |
||
37 | * @var AntiCsrfInterface |
||
38 | */ |
||
39 | protected $antiCsrf; |
||
40 | |||
41 | 24 | public function __construct() |
|
44 | |||
45 | 1 | public function __clone() |
|
50 | |||
51 | /** |
||
52 | * Return form markup string |
||
53 | * |
||
54 | * @return string |
||
55 | */ |
||
56 | 1 | public function __toString() |
|
70 | |||
71 | /** |
||
72 | * @param BuilderInterface $builder |
||
73 | * @param FilterFactory $filterFactory |
||
74 | * @param HelperLocatorFactory $helperFactory |
||
75 | * |
||
76 | * @\Ray\Di\Di\Inject |
||
77 | */ |
||
78 | 24 | public function setBaseDependencies( |
|
87 | |||
88 | 1 | public function setAntiCsrf(AntiCsrfInterface $antiCsrf) |
|
92 | |||
93 | /** |
||
94 | * @\Ray\Di\Di\PostConstruct |
||
95 | */ |
||
96 | 24 | public function postConstruct() |
|
103 | |||
104 | /** |
||
105 | * {@inheritdoc} |
||
106 | */ |
||
107 | 2 | public function input($input) |
|
111 | |||
112 | /** |
||
113 | * {@inheritdoc} |
||
114 | */ |
||
115 | 2 | public function error($input) |
|
130 | |||
131 | /** |
||
132 | * @param array $attr attributes for the form tag |
||
133 | * |
||
134 | * @throws \Aura\Html\Exception\HelperNotFound |
||
135 | * @throws \Aura\Input\Exception\NoSuchInput |
||
136 | * |
||
137 | * @return string |
||
138 | */ |
||
139 | 3 | public function form($attr = []) |
|
148 | |||
149 | /** |
||
150 | * Applies the filter to a subject. |
||
151 | * |
||
152 | * @param array $data |
||
153 | * |
||
154 | * @throws CsrfViolationException |
||
155 | * |
||
156 | * @return bool |
||
157 | */ |
||
158 | 10 | public function apply(array $data) |
|
167 | |||
168 | /** |
||
169 | * Returns all failure messages for all fields. |
||
170 | * |
||
171 | * @return array |
||
172 | */ |
||
173 | 4 | public function getFailureMessages() |
|
177 | |||
178 | /** |
||
179 | * Returns all the fields collection |
||
180 | * |
||
181 | * @return \ArrayIterator |
||
182 | */ |
||
183 | 1 | public function getIterator() |
|
187 | } |
||
188 |
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.