| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | public function run(): void |
||
| 10 | { |
||
| 11 | if (!$this->isInstalled()) { |
||
| 12 | return; |
||
| 13 | } |
||
| 14 | if (!$this->isVersionSupported()) { |
||
| 15 | $this->notify('WPLoyalty'); |
||
| 16 | return; |
||
| 17 | } |
||
| 18 | $this->hook(Controller::class, [ |
||
| 19 | ['filterFieldAfter', 'site-reviews/review-form/fields/visible', 10, 2], |
||
| 20 | ['onApprovedReview', 'site-reviews/review/approved', 20], |
||
| 21 | ['onCreatedReview', 'site-reviews/review/created', 20], |
||
| 22 | ]); |
||
| 45 |