for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thruster\Component\HttpModifier;
use Psr\Http\Message\MessageInterface;
/**
* Class BaseModifierCollection
*
* @package Thruster\Component\HttpModifier
* @author Aurimas Niekis <[email protected]>
*/
class BaseModifierCollection
{
* @var ModifierInterface[]
protected $collection;
public function __construct()
$this->collection = [];
}
* @return ModifierInterface[]
public function all() : array
return $this->collection;