Files
archived-framework-bundle/Command/WorkflowDumpCommand.php
Fabien Potencier d5f5c1a304 Fix CS
2025-10-03 08:02:03 +02:00

26 lines
812 B
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bundle\FrameworkBundle\Command;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Workflow\Command\WorkflowDumpCommand as BaseWorkflowDumpCommand;
trigger_deprecation('symfony/framework-bundle', '7.4', 'The "%s" class is deprecated, use "%s" instead.', WorkflowDumpCommand::class, BaseWorkflowDumpCommand::class);
/**
* @deprecated since Symfony 7.4, use {@see BaseWorkflowDumpCommand} instead.
*/
#[AsCommand(name: 'workflow:dump', description: 'Dump a workflow')]
class WorkflowDumpCommand extends BaseWorkflowDumpCommand
{
}