ILIAS
trunk Revision v11.0_alpha-1723-g8e69f309bab
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
NullRequest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\OERExposer\OAIPMH\Requests
;
22
23
use
ILIAS\MetaData\OERExposer\OAIPMH\Requests\Verb
;
24
use
ILIAS\MetaData\OERExposer\OAIPMH\Requests\Argument
;
25
use
ILIAS\Data\URI
;
26
27
class
NullRequest
implements
RequestInterface
28
{
29
public
function
baseURL
():
URI
30
{
31
return
new
URI
(
'http://0'
);
32
}
33
34
public
function
verb
():
Verb
35
{
36
return
Verb::NULL;
37
}
38
39
public
function
withArgument
(
Argument
$key,
string
$value):
RequestInterface
40
{
41
return
$this;
42
}
43
44
public
function
argumentValue
(
Argument
$argument): string
45
{
46
return
''
;
47
}
48
49
public
function
hasArgument
(
Argument
$argument): bool
50
{
51
return
false
;
52
}
53
54
public
function
hasCorrectArguments
(array $required, array $optional, array $exclusive): bool
55
{
56
return
false
;
57
}
58
62
public
function
argumentKeys
(): \
Generator
63
{
64
yield
from
[];
65
}
66
}
ILIAS\MetaData\OERExposer\OAIPMH\Requests\NullRequest\verb
verb()
Definition:
NullRequest.php:34
ILIAS\MetaData\OERExposer\OAIPMH\Requests\NullRequest\argumentKeys
argumentKeys()
Definition:
NullRequest.php:62
ILIAS\MetaData\OERExposer\OAIPMH\Requests\NullRequest\baseURL
baseURL()
Definition:
NullRequest.php:29
ILIAS\MetaData\OERExposer\OAIPMH\Requests\NullRequest
Definition:
NullRequest.php:27
ILIAS\MetaData\OERExposer\OAIPMH\Requests\NullRequest\hasArgument
hasArgument(Argument $argument)
Definition:
NullRequest.php:49
ILIAS\MetaData\OERExposer\OAIPMH\Requests
Definition:
Argument.php:21
RequestInterface
ILIAS\MetaData\OERExposer\OAIPMH\Requests\NullRequest\argumentValue
argumentValue(Argument $argument)
Definition:
NullRequest.php:44
ILIAS\MetaData\OERExposer\OAIPMH\Requests\Argument
Argument
Definition:
Argument.php:23
ILIAS\MetaData\OERExposer\OAIPMH\Requests\NullRequest\withArgument
withArgument(Argument $key, string $value)
Definition:
NullRequest.php:39
ILIAS\MetaData\OERExposer\OAIPMH\Requests\NullRequest\hasCorrectArguments
hasCorrectArguments(array $required, array $optional, array $exclusive)
Returns true if this either has all required arguments, any subset of the optional arguments...
Definition:
NullRequest.php:54
Generator
ILIAS\Data\URI
ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\from
from(FileStream $stream)
Definition:
GdImageToStreamTrait.php:48
ILIAS\MetaData\OERExposer\OAIPMH\Requests\Verb
Verb
Definition:
Verb.php:23
components
ILIAS
MetaData
classes
OERExposer
OAIPMH
Requests
NullRequest.php
Generated on Sun Apr 6 2025 23:03:44 for ILIAS by
1.8.13 (using
Doxyfile
)