ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
BaseRequest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Cache\Container
;
22
26
class
BaseRequest
implements
Request
27
{
28
public
function
__construct
(
private
string
$container_key,
private
bool
$forced =
false
)
29
{
30
}
31
32
public
function
getContainerKey
(): string
33
{
34
return
$this->container_key;
35
}
36
37
public
function
isForced
(): bool
38
{
39
return
$this->forced;
40
}
41
}
ILIAS\Cache\Container
Definition:
ActiveContainer.php:21
ILIAS\Cache\Container\BaseRequest\__construct
__construct(private string $container_key, private bool $forced=false)
Definition:
BaseRequest.php:28
ILIAS\Cache\Container\BaseRequest\getContainerKey
getContainerKey()
Definition:
BaseRequest.php:32
ServerRequestInterface
ILIAS\Cache\Container\BaseRequest
Definition:
BaseRequest.php:26
ILIAS\Cache\Container\BaseRequest\isForced
isForced()
Definition:
BaseRequest.php:37
src
Cache
Container
BaseRequest.php
Generated on Wed Sep 10 2025 14:12:04 for ILIAS by
1.8.13 (using
Doxyfile
)