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