1 | <?php |
||
5 | class File extends Element |
||
6 | { |
||
7 | protected $type = 'file'; |
||
8 | |||
9 | protected $actionUrl; |
||
10 | |||
11 | protected $multiple = false; |
||
12 | |||
13 | protected $showFileList = true; |
||
14 | |||
15 | protected $withCredentials = false; |
||
16 | |||
17 | public function getValue() |
||
31 | |||
32 | public function getActionUrl() |
||
39 | |||
40 | public function setActionUrl($value) |
||
46 | |||
47 | /** |
||
48 | * Allow multiple selection files |
||
49 | * |
||
50 | * @return $this |
||
51 | */ |
||
52 | public function isMultiple() |
||
58 | |||
59 | /** |
||
60 | * Do not show file list |
||
61 | * |
||
62 | * @return $this |
||
63 | */ |
||
64 | public function hideFileList() |
||
70 | |||
71 | /** |
||
72 | * Indicates whether or not cross-site Access-Control requests |
||
73 | * should be made using credentials |
||
74 | * |
||
75 | * @return $this |
||
76 | */ |
||
77 | public function withCredentials() |
||
83 | |||
84 | public function setMaxSize($value) |
||
90 | |||
91 | public function toArray() |
||
99 | } |
||
100 |
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.