This commit is contained in:
Dominik Liebler
2021-04-12 14:04:45 +02:00
parent 5c5d453506
commit 4678b5d86f
50 changed files with 992 additions and 1430 deletions

View File

@@ -6,11 +6,8 @@ use Psr\Http\Message\RequestInterface;
abstract class Handler
{
private ?Handler $successor = null;
public function __construct(Handler $handler = null)
public function __construct(private ?Handler $successor = null)
{
$this->successor = $handler;
}
/**