<?php
declare(strict_types=1);
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\AdminBundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\ClassLoader\ClassCollectionLoader;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
@trigger_error(
'The '.__NAMESPACE__.'\CreateClassCacheCommand class is deprecated since version 3.39.0 and will be removed in 4.0.',
E_USER_DEPRECATED
);
/**
* NEXT_MAJOR: Remove this class.
*
* @author Thomas Rabaix <[email protected]>
*/
class CreateClassCacheCommand extends ContainerAwareCommand
{
public function configure()
{
$this->setName('cache:create-cache-class');
$this->setDescription('Generate the classes.php files');
}
public function execute(InputInterface $input, OutputInterface $output)
{
$kernel = $this->getContainer()->get('kernel');
$classmap = $kernel->getCacheDir().'/classes.map';
if (!is_file($classmap)) {
throw new \RuntimeException(sprintf('The file %s does not exist', $classmap));
}
$name = 'classes';
$extension = '.php';
$output->write('<info>Writing cache file ...</info>');
ClassCollectionLoader::load(
include($classmap),
$kernel->getCacheDir(),
$name,
$kernel->isDebug(),
false,
$extension
);
$output->writeln(' done!');
}
}