Files
php-auth/src/Cli/Commands/CommandInterface.php
Ron Rise 4ee830327e
Some checks failed
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in -7s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in -16s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Failing after -3s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in -4s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 6s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in -41s
tests and linting
2026-01-29 19:28:57 -05:00

26 lines
561 B
PHP

<?php
declare(strict_types=1);
namespace Siteworxpro\App\Cli\Commands;
use Siteworxpro\App\Cli\ClimateOutput;
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
interface CommandInterface
{
/**
* Execute the command.
*
* @param ArgvInput|ClimateOutput $input
* @param ClimateOutput $output
* @return int
*/
public function __invoke(
ClimateOutput|ArgvInput $input,
ClimateOutput $output
): int;
}