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