ILIAS
trunk Revision v11.0_alpha-2658-ge2404539063
◀ ilDoc Overview
NullBasicProperties.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Search\Clauses\Properties
;
22
23
use
ILIAS\MetaData\Paths\PathInterface
;
24
use
ILIAS\MetaData\Search\Clauses\Mode
;
25
use
ILIAS\MetaData\Paths\NullPath
;
26
27
class
NullBasicProperties
implements
BasicPropertiesInterface
28
{
29
public
function
path
():
PathInterface
30
{
31
return
new
NullPath
();
32
}
33
34
public
function
mode
():
Mode
35
{
36
return
Mode::EQUALS;
37
}
38
39
public
function
isModeNegated
(): bool
40
{
41
return
false
;
42
}
43
44
public
function
value
(): string
45
{
46
return
''
;
47
}
48
}
ILIAS\MetaData\Search\Clauses\Properties\NullBasicProperties\value
value()
Definition:
NullBasicProperties.php:44
ILIAS\MetaData\Paths\NullPath
Definition:
NullPath.php:23
ILIAS\MetaData\Paths\PathInterface
Definition:
PathInterface.php:25
ILIAS\MetaData\Search\Clauses\Properties\NullBasicProperties\isModeNegated
isModeNegated()
Definition:
NullBasicProperties.php:39
ILIAS\MetaData\Search\Clauses\Properties\NullBasicProperties
Definition:
NullBasicProperties.php:27
ILIAS\MetaData\Search\Clauses\Properties\NullBasicProperties\path
path()
Definition:
NullBasicProperties.php:29
ILIAS\MetaData\Search\Clauses\Properties\NullBasicProperties\mode
mode()
Definition:
NullBasicProperties.php:34
ILIAS\MetaData\Search\Clauses\Properties
Definition:
BasicProperties.php:21
ILIAS\MetaData\Search\Clauses\Properties\BasicPropertiesInterface
Definition:
BasicPropertiesInterface.php:26
PathInterface
NullPath
ILIAS\MetaData\Search\Clauses\Mode
Mode
Definition:
Mode.php:23
components
ILIAS
MetaData
classes
Search
Clauses
Properties
NullBasicProperties.php
Generated on Tue Sep 2 2025 23:03:30 for ILIAS by
1.8.13 (using
Doxyfile
)