Sulu\Bundle\ContentBundle\Behat\BaseStructureContext::removeTempStructureTemplates PHP Метод

removeTempStructureTemplates() публичный Метод

Remove the generated templates after the scenario has completed.
    public function removeTempStructureTemplates()
    {
        if (!$this->templatePaths) {
            return;
        }
        foreach (array_keys($this->templatePaths) as $templatePath) {
            unlink($templatePath);
        }
        $this->templatePaths = [];
    }