ILIAS
trunk Revision v11.0_alpha-1871-gde1fee8db3d
◀ 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
Wrapper.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\OERHarvester\Results
;
22
23
class
Wrapper
implements
WrapperInterface
24
{
25
protected \ILIAS\Cron\Job\JobResult
$result
;
26
27
public
function
__construct
(\
ILIAS
\
Cron
\Job\JobResult $result)
28
{
29
$this->result =
$result
;
30
}
31
32
public
function
get
(): \
ILIAS
\
Cron
\Job\JobResult
33
{
34
return
$this->result
;
35
}
36
37
public
function
withStatus
(
int
$status):
WrapperInterface
38
{
39
$clone = clone $this;
40
$clone->result->setStatus($status);
41
return
$clone;
42
}
43
44
public
function
withMessage
(
string
$message
):
WrapperInterface
45
{
46
$clone = clone $this;
47
$clone->result->setMessage($message);
48
return
$clone;
49
}
50
51
public
function
__clone
(): void
52
{
53
$this->result = clone
$this->result
;
54
}
55
}
ILIAS\MetaData\OERHarvester\Results\Wrapper\withMessage
withMessage(string $message)
Definition:
Wrapper.php:44
ILIAS\MetaData\OERHarvester\Results\Wrapper\__clone
__clone()
Definition:
Wrapper.php:51
ILIAS
Interface Observer Contains several chained tasks and infos about them.
Definition:
AccessControl.php:21
ILIAS\Cron
Definition:
Cron.php:23
ILIAS\MetaData\OERHarvester\Results\Wrapper
Definition:
Wrapper.php:23
ILIAS\MetaData\OERHarvester\Results\Wrapper\__construct
__construct(\ILIAS\Cron\Job\JobResult $result)
Definition:
Wrapper.php:27
ILIAS\MetaData\OERHarvester\Results\Wrapper\withStatus
withStatus(int $status)
Definition:
Wrapper.php:37
ILIAS\MetaData\OERHarvester\Results\Wrapper\$result
ILIAS Cron Job JobResult $result
Definition:
Wrapper.php:25
$message
$message
Definition:
xapiexit.php:31
ILIAS\MetaData\OERHarvester\Results
Definition:
NullWrapper.php:21
ILIAS\MetaData\OERHarvester\Results\WrapperInterface
Definition:
WrapperInterface.php:23
components
ILIAS
MetaData
classes
OERHarvester
Results
Wrapper.php
Generated on Mon Apr 28 2025 23:03:14 for ILIAS by
1.8.13 (using
Doxyfile
)