ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
RamseyUuidWrapper.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\Data\UUID
;
4
5
use Ramsey\Uuid\UuidInterface as RamseyUuidInterface;
6
13
class
RamseyUuidWrapper
implements
Uuid
14
{
15
19
private
$wrapped_uuid
;
20
21
26
public
function
__construct
(RamseyUuidInterface
$wrapped_uuid
)
27
{
28
$this->wrapped_uuid =
$wrapped_uuid
;
29
}
30
34
public
function
getWrappedUuid
() : RamseyUuidInterface
35
{
36
return
$this->wrapped_uuid
;
37
}
38
43
public
function
compareTo
(
Uuid
$other) : int
44
{
45
return
$this->wrapped_uuid->compareTo($other->getWrappedUuid());
46
}
47
52
public
function
equals
(
Uuid
$other) : bool
53
{
54
return
$this->wrapped_uuid->equals($other->getWrappedUuid());
55
}
56
60
public
function
toString
() : string
61
{
62
return
$this->wrapped_uuid->toString();
63
}
64
}
ILIAS\Data\UUID\RamseyUuidWrapper\compareTo
compareTo(Uuid $other)
Definition:
RamseyUuidWrapper.php:43
ILIAS\Data\UUID
Definition:
Factory.php:3
ILIAS\Data\UUID\RamseyUuidWrapper
Definition:
RamseyUuidWrapper.php:13
ILIAS\Data\UUID\RamseyUuidWrapper\equals
equals(Uuid $other)
Definition:
RamseyUuidWrapper.php:52
ILIAS\Data\UUID\Uuid
Definition:
Uuid.php:11
ILIAS\Data\UUID\RamseyUuidWrapper\__construct
__construct(RamseyUuidInterface $wrapped_uuid)
Uuid constructor.
Definition:
RamseyUuidWrapper.php:26
ILIAS\Data\UUID\RamseyUuidWrapper\toString
toString()
Definition:
RamseyUuidWrapper.php:60
ILIAS\Data\UUID\RamseyUuidWrapper\getWrappedUuid
getWrappedUuid()
Definition:
RamseyUuidWrapper.php:34
ILIAS\Data\UUID\RamseyUuidWrapper\$wrapped_uuid
$wrapped_uuid
Definition:
RamseyUuidWrapper.php:19
src
Data
UUID
RamseyUuidWrapper.php
Generated on Wed Apr 9 2025 21:01:53 for ILIAS by
1.8.13 (using
Doxyfile
)