Initial commit

This commit is contained in:
2019-12-07 15:03:02 +01:00
commit e02e43217c
9 changed files with 375 additions and 0 deletions

16
src/ResponseHandler.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace JoopSchilder\Http2;
/**
* Interface ResponseHandler
*/
interface ResponseHandler
{
/**
* @param Response $response
* @return mixed
*/
function __invoke(Response $response): void;
}