Total Complexity | 3 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 44.44% |
Changes | 0 |
1 | <?php |
||
40 | class Block extends Widget |
||
41 | { |
||
42 | /** |
||
43 | * @var bool whether to render the block content in place. Defaults to false, |
||
44 | * meaning the captured block content will not be displayed. |
||
45 | */ |
||
46 | public $renderInPlace = false; |
||
47 | |||
48 | |||
49 | /** |
||
50 | * Starts recording a block. |
||
51 | */ |
||
52 | 1 | public function init() |
|
58 | } |
||
59 | |||
60 | /** |
||
61 | * Ends recording a block. |
||
62 | * This method stops output buffering and saves the rendering result as a named block in the view. |
||
63 | */ |
||
64 | public function run() |
||
73 |