0 follower

Final Class Yiisoft\HttpMiddleware\HttpCache\CacheControlProvider\NullCacheControlProvider

InheritanceYiisoft\HttpMiddleware\HttpCache\CacheControlProvider\NullCacheControlProvider
ImplementsYiisoft\HttpMiddleware\HttpCache\CacheControlProvider\CacheControlProviderInterface

Returns null regardless of request.

It can be used when cache control functionality is not required.

Method Details

Hide inherited methods

get() public method

public string|null get ( \Psr\Http\Message\ServerRequestInterface $request )
$request \Psr\Http\Message\ServerRequestInterface

                public function get(ServerRequestInterface $request): ?string
{
    return null;
}