NerdsAndCompany\Schematic\Services\Fields::resetCraftFieldsServiceFieldsCache PHP Method

resetCraftFieldsServiceFieldsCache() private method

Reset craft fields service fields cache using reflection.
    private function resetCraftFieldsServiceFieldsCache()
    {
        $obj = $this->getFieldsService();
        $refObject = new \ReflectionObject($obj);
        $refProperty = $refObject->getProperty('_fieldsByContextAndHandle');
        $refProperty->setAccessible(true);
        $refProperty->setValue($obj, array());
    }