Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class Textarea extends Field |
||
10 | { |
||
11 | /** |
||
12 | * Wraps the content in paragraphs when printed |
||
13 | * |
||
14 | * @return string |
||
15 | */ |
||
16 | public function __toString(): string |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Performs the actual transformation |
||
23 | * |
||
24 | * @param $text |
||
25 | * @return string |
||
26 | */ |
||
27 | private function autoParagraph($text): string |
||
35 | } |
||
36 | } |