for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Selami\Authentication\Controller\Authentication;
use Selami\Authentication\Controller\Application;
use Psr\Http\Message\ServerRequestInterface;
use Symfony\Component\HttpFoundation\Session\Session;
abstract class AuthenticationController extends Application
{
public function __construct(ServerRequestInterface $request, Session $session, ?array $args)
$this->session = $session;
$this->request = $request;
$this->args = $args;
}