for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace HeroesofAbenez\Chat;
final class Test2Command extends BaseChatCommand {
public const NAME = "test2";
public function execute() : string {
$args = func_get_args();
$text = "test";
foreach($args as $arg) {
$text .= $arg;
}
return $text;
?>