JEMBOT MAWOT Bypass Shell
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\Symfony\Maker;
use Symfony\Bundle\MakerBundle\ConsoleStyle;
use Symfony\Bundle\MakerBundle\DependencyBuilder;
use Symfony\Bundle\MakerBundle\Generator;
use Symfony\Bundle\MakerBundle\InputConfiguration;
use Symfony\Bundle\MakerBundle\Maker\AbstractMaker;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
final class MakeStateProcessor extends AbstractMaker
{
/**
* {@inheritdoc}
*/
public static function getCommandName(): string
{
return 'make:state-processor';
}
/**
* {@inheritdoc}
*/
public static function getCommandDescription(): string
{
return 'Creates an API Platform state processor';
}
/**
* {@inheritdoc}
*/
public function configureCommand(Command $command, InputConfiguration $inputConfig)
{
$command
->addArgument('name', InputArgument::REQUIRED, 'Choose a class name for your state processor (e.g. <fg=yellow>AwesomeStateProcessor</>)')
->setHelp(file_get_contents(__DIR__.'/Resources/help/MakeStateProcessor.txt'));
}
/**
* {@inheritdoc}
*/
public function configureDependencies(DependencyBuilder $dependencies)
{
}
/**
* {@inheritdoc}
*/
public function generate(InputInterface $input, ConsoleStyle $io, Generator $generator)
{
$stateProcessorClassNameDetails = $generator->createClassNameDetails(
$input->getArgument('name'),
'State\\'
);
$generator->generateClass(
$stateProcessorClassNameDetails->getFullName(),
__DIR__.'/Resources/skeleton/StateProcessor.tpl.php'
);
$generator->writeChanges();
$this->writeSuccessMessage($io);
$io->text([
'Next: Open your new state processor class and start customizing it.',
]);
}
}
xxxxx1.0, XXX xxxx