Deleted test command
testing/ogcore-api/pipeline/head This commit looks good Details
ogcore-debian-package/pipeline/tag This commit looks good Details
ogcore-debian-package/pipeline/head This commit looks good Details

pull/31/head^2 0.11.2
Manuel Aranda Rosales 2025-04-23 17:42:36 +02:00
parent 4a9749c97c
commit ed13a7adec
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
<?php
declare(strict_types=1);
namespace App\Command\Migration;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
#[AsCommand(name: 'opengnsys:test', description: 'Hello PhpStorm')]
class TestCommand extends Command
{
protected function execute(InputInterface $input, OutputInterface $output): int
{
return Command::SUCCESS;
}
}