mirror of
https://github.com/symfony/console.git
synced 2026-03-24 01:12:13 +01:00
16 lines
334 B
PHP
16 lines
334 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\Console\Tests\Fixtures;
|
|
|
|
use Symfony\Component\Console\Attribute\AsCommand;
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
#[AsCommand('invokable:test')]
|
|
class InvokableExtendingCommandTestCommand extends Command
|
|
{
|
|
public function __invoke(): int
|
|
{
|
|
return Command::SUCCESS;
|
|
}
|
|
}
|