1 | <?php |
||
7 | class Form extends BaseElement |
||
8 | { |
||
9 | protected $tag = 'form'; |
||
10 | |||
11 | /** |
||
12 | * @param string|null $action |
||
13 | * |
||
14 | * @return static |
||
15 | */ |
||
16 | public function action($action) |
||
20 | |||
21 | /** |
||
22 | * @param string|null $method |
||
23 | * |
||
24 | * @return static |
||
25 | */ |
||
26 | public function method($method) |
||
30 | |||
31 | /** |
||
32 | * @return static |
||
33 | */ |
||
34 | public function novalidate($method) |
||
38 | |||
39 | /** |
||
40 | * @return static |
||
41 | */ |
||
42 | public function acceptsFiles() |
||
46 | } |
||
47 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.