| 1 | <?php |
||
| 18 | trait EscapeHtmlTrait |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var EscapeHtml |
||
| 22 | */ |
||
| 23 | protected $escapeHtml; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return EscapeHtml |
||
| 27 | */ |
||
| 28 | public function getEscapeHtml() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param EscapeHtml $escapeHtml |
||
| 38 | * @return $this |
||
| 39 | */ |
||
| 40 | public function setEscapeHtml(EscapeHtml $escapeHtml) |
||
| 45 | } |
||
| 46 |