23 lines
515 B
PHP
23 lines
515 B
PHP
|
<?php
|
||
|
|
||
|
namespace SparkPlug\Com\Noccy\ApiClient\Commands;
|
||
|
|
||
|
use Spark\Commands\Command;
|
||
|
use SparkPlug;
|
||
|
use Symfony\Component\Console\Input\InputInterface;
|
||
|
use Symfony\Component\Console\Output\OutputInterface;
|
||
|
|
||
|
class ApiProfileCommand extends Command
|
||
|
{
|
||
|
protected function configure()
|
||
|
{
|
||
|
$this->setName("api:profile")
|
||
|
->setDescription("Manage API profiles");
|
||
|
}
|
||
|
|
||
|
protected function execute(InputInterface $input, OutputInterface $output)
|
||
|
{
|
||
|
return Command::SUCCESS;
|
||
|
}
|
||
|
}
|