for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Gewaer\Middleware;
use Phalcon\Mvc\Micro;
use Phalcon\Mvc\Micro\MiddlewareInterface;
/**
* Class AuthenticationMiddleware
*
* @package Niden\Middleware
*/
class AuthenticationMiddleware implements MiddlewareInterface
{
* Call me
* @param Micro $api
* @return bool
public function call(Micro $api)
return true;
}