1 | <?php |
||
11 | class ValidationFormException extends HttpException implements FlattenErrorExceptionInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var FormInterface |
||
15 | */ |
||
16 | protected $form; |
||
17 | |||
18 | /** |
||
19 | * Constructor |
||
20 | * |
||
21 | * @param FormInterface $form |
||
22 | * @param integer $statusCode |
||
23 | * @param integer $code |
||
24 | * @param string $message |
||
25 | * @param array $headers |
||
26 | */ |
||
27 | public function __construct( |
||
37 | |||
38 | /** |
||
39 | * Get form |
||
40 | * |
||
41 | * @return FormInterface |
||
42 | */ |
||
43 | public function getForm() |
||
47 | |||
48 | /** |
||
49 | * Flatten form errors |
||
50 | * |
||
51 | * @param FormInterface $form |
||
52 | * @param boolean $subForm |
||
53 | * |
||
54 | * @return array |
||
55 | */ |
||
56 | public function getFlattenErrors(FormInterface $form = null, $subForm = false) |
||
87 | } |
||
88 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.