for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace FondBot\Controllers;
use FondBot\Foundation\Kernel;
use Psr\Http\Message\ResponseInterface;
use Zend\Diactoros\Response\HtmlResponse;
class Controller
{
public function __invoke(): ResponseInterface
return new HtmlResponse('FondBot v'.Kernel::VERSION);
}