Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | trait CanRenderInlineTrait |
||
13 | { |
||
14 | /** @var bool $renderInline */ |
||
15 | private $renderInline; |
||
16 | |||
17 | /** |
||
18 | * @return boolean |
||
19 | */ |
||
20 | 16 | public function isRenderInline() |
|
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param boolean $renderInline |
||
27 | * @return $this |
||
28 | */ |
||
29 | 22 | public function setRenderInline($renderInline) |
|
33 | } |
||
34 | } |