Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
42 | public function afterImport() |
||
43 | { |
||
44 | $obj = Craft::$app->globals; |
||
45 | $refObject = new \ReflectionObject($obj); |
||
46 | if ($refObject->hasProperty('_allGlobalSets')) { |
||
47 | $refProperty1 = $refObject->getProperty('_allGlobalSets'); |
||
48 | $refProperty1->setAccessible(true); |
||
49 | $refProperty1->setValue($obj, null); |
||
50 | } |
||
51 | } |
||
52 | } |
||
53 |