Pagekit\Console\Commands\ClearCacheCommand::execute PHP 메소드

execute() 보호된 메소드

protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        foreach ((array) glob($this->container['path.cache'] . '/*.cache') as $file) {
            @unlink($file);
        }
    }
ClearCacheCommand