Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
28 | 3 | public function init() |
|
29 | { |
||
30 | 3 | parent::init(); |
|
31 | |||
32 | 3 | self::$plugin = $this; |
|
33 | |||
34 | 3 | $this->setComponents([ |
|
35 | 3 | 'frontMatter' => FrontMatterService::class, |
|
36 | ]); |
||
37 | |||
38 | Event::on(CraftVariable::class, CraftVariable::EVENT_INIT, function(Event $event) { |
||
39 | 1 | $variable = $event->sender; |
|
40 | 1 | $variable->set('frontMatter', FrontMatterVariable::class); |
|
41 | 3 | }); |
|
43 | } |