Final Class Yiisoft\HttpMiddleware\HttpCache\ETagGenerator\CallableETagGenerator
| Inheritance | Yiisoft\HttpMiddleware\HttpCache\ETagGenerator\CallableETagGenerator |
|---|---|
| Implements | Yiisoft\HttpMiddleware\HttpCache\ETagGenerator\ETagGeneratorInterface |
Generates a string ETag value using a callable function.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | Yiisoft\HttpMiddleware\HttpCache\ETagGenerator\CallableETagGenerator | |
| generate() | Yiisoft\HttpMiddleware\HttpCache\ETagGenerator\CallableETagGenerator |
Method Details
| public mixed __construct ( callable $callable ) | ||
| $callable | callable |
A callable function that takes a string seed and returns a string ETag value. |
public function __construct(callable $callable)
{
$this->callable = $callable;
}
Signup or Login in order to comment.