Neos\Flow\Reflection\ReflectionService::unfreezePackageReflection PHP Method

unfreezePackageReflection() public method

This method is used by the package manager.
public unfreezePackageReflection ( string $packageKey ) : void
$packageKey string The package to remove the data from
return void
    public function unfreezePackageReflection($packageKey)
    {
        if (!$this->initialized) {
            $this->initialize();
        }
        $pathAndFilename = $this->getPrecompiledReflectionStoragePath() . $packageKey . '.dat';
        if (file_exists($pathAndFilename)) {
            unlink($pathAndFilename);
        }
    }
ReflectionService