add perfomance chapters
This commit is contained in:
parent
55fc107eb8
commit
69381b9fcb
101 changed files with 8014 additions and 62 deletions
10
implementation/18-caching/src/Http/RoutedRequestHandler.php
Normal file
10
implementation/18-caching/src/Http/RoutedRequestHandler.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php declare(strict_types=1);
|
||||
|
||||
namespace Lubian\NoFramework\Http;
|
||||
|
||||
use Psr\Http\Server\RequestHandlerInterface;
|
||||
|
||||
interface RoutedRequestHandler extends RequestHandlerInterface
|
||||
{
|
||||
public function setRouteAttributeName(string $routeAttributeName = '__route_handler'): void;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue