Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
45 | private function resetCraftEditableSectionsCache() |
||
46 | { |
||
47 | $obj = Craft::$app->sections; |
||
48 | $refObject = new \ReflectionObject($obj); |
||
49 | if ($refObject->hasProperty('_editableSectionIds')) { |
||
50 | $refProperty1 = $refObject->getProperty('_editableSectionIds'); |
||
51 | $refProperty1->setAccessible(true); |
||
52 | $refProperty1->setValue($obj, $obj->getAllSectionIds()); |
||
53 | } |
||
54 | } |
||
55 | } |
||
56 |