for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BEAR\Package\Provide\Router;
use Aura\Cli\Help;
class CliRouterHelp extends Help
{
/** @return null */
protected function init()
$this->setSummary('CLI Router');
$this->setUsage('<method> <uri>');
$this->setDescr("E.g. \"get /\", \"options /users\", \"post 'app://self/users?name=Sunday'\"");
$this->descr = '';
$this->summary = '';
$this->usage = '';
return null;
}