1 | <?php |
||
8 | trait AllowHtmlTrait |
||
9 | { |
||
10 | /** |
||
11 | * If set to true, any annotation text that includes HTML tags will be rendered as HTML. |
||
12 | * |
||
13 | * Default: false |
||
14 | * |
||
15 | * @var bool |
||
16 | */ |
||
17 | protected $allowHtml; |
||
18 | |||
19 | /** |
||
20 | * @param bool $allowHtml |
||
21 | * |
||
22 | * @return $this |
||
23 | */ |
||
24 | public function setAllowHtml($allowHtml) |
||
30 | } |
||
31 |