for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
use AbterPhp\Contact\Constant\Routes;
use Opulence\Routing\Router;
/**
* ----------------------------------------------------------
* Create all of the routes for the HTTP kernel
*
* @var Router $router
*/
$router->group(
['controllerNamespace' => 'AbterPhp\Contact\Http\Controllers'],
function (Router $router) {
/** @see \AbterPhp\Contact\Http\Controllers\Website\Contact::send() */
$router->post(
Routes::PATH_CONTACT,
'Website\Contact@send',
[OPTION_NAME => Routes::ROUTE_CONTACT]
OPTION_NAME
);
}