for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Borobudur-Kernel package.
*
* (c) Hexacodelabs <http://hexacodelabs.com>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Borobudur\Kernel\Middleware;
use Borobudur\DependencyInjection\ContainerAwareInterface;
use Borobudur\DependencyInjection\ContainerAwareTrait;
use Borobudur\Http\ParameterBag;
/**
* @author Iqbal Maulana <[email protected]>
* @created 11/25/15
abstract class AbstractMiddleware implements MiddlewareInterface, ContainerAwareInterface
{
use ContainerAwareTrait;
* @var ParameterBag
protected $parameter;
* {@inheritdoc}
public function setParameter(ParameterBag $parameter)
$this->parameter = $parameter;
}