for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace app\Middlewares;
use System\Application;
use app\Middlewares\MiddlewareIntrerface\MiddlewaresInterface as Middleware;
class PermissionsMiddleware implements Middleware
{
public function handle(Application $app, $next)
return $next;
}