Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
9 | public function run(): void |
||
10 | { |
||
11 | if (!$this->isInstalled()) { |
||
12 | return; |
||
13 | } |
||
14 | if (!$this->isEnabled()) { |
||
15 | return; |
||
16 | } |
||
17 | $this->hook(Controller::class, [ |
||
18 | ['filterEarnPointTypes', 'lpfw_get_point_earn_source_types'], |
||
19 | ['onApprovedReview', 'site-reviews/review/approved', 20], |
||
20 | ['onCreatedReview', 'site-reviews/review/created', 20], |
||
21 | ]); |
||
35 |