You've already forked php-auth
generated from siteworxpro/Php-Template
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
26 lines
561 B
PHP
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;
|
|
}
|