1 | <?php |
||
9 | class TextareaElement extends InputElement |
||
10 | { |
||
11 | /** |
||
12 | * @var string the actual text within the area |
||
13 | */ |
||
14 | protected $text; |
||
15 | |||
16 | /** |
||
17 | * @param string $name The name of this form element |
||
18 | * @param string $label The label text for this element |
||
19 | */ |
||
20 | public function __construct($name, $label) |
||
25 | |||
26 | /** |
||
27 | * Get or set the element's value |
||
28 | * |
||
29 | * This is the preferred way of setting the element's value |
||
30 | * |
||
31 | * @param null|string $value |
||
32 | * @return string|$this |
||
33 | */ |
||
34 | public function val($value = null) |
||
42 | |||
43 | /** |
||
44 | * The HTML representation of this element |
||
45 | * |
||
46 | * @return string |
||
47 | */ |
||
48 | protected function mainElementHTML() |
||
54 | |||
55 | } |
||
56 |
This check looks at variables that are passed out again to other methods.
If the outgoing method call has stricter type requirements than the method itself, an issue is raised.
An additional type check may prevent trouble.