1 | <?php |
||
7 | class Text extends Field |
||
8 | { |
||
9 | use PlainInput; |
||
10 | |||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $icon = 'fa-pencil'; |
||
15 | |||
16 | /** |
||
17 | * Add custom fa-icon. |
||
18 | * |
||
19 | * @param string $icon |
||
20 | * |
||
21 | * @return $this |
||
22 | */ |
||
23 | public function addIcon($icon) |
||
29 | |||
30 | /** |
||
31 | * Render this filed. |
||
32 | * |
||
33 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
34 | */ |
||
35 | public function render() |
||
54 | } |
||
55 |
If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:
If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.