ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
PositiveInteger.php
Go to the documentation of this file.
1
<?php
2
declare(strict_types=1);
3
/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4
9
namespace
ILIAS\Data
;
10
11
use
ILIAS\Refinery\ConstraintViolationException
;
12
13
class
PositiveInteger
14
{
18
private
$value
;
19
24
public
function
__construct
(
int
$value
)
25
{
26
$matches = null;
27
28
if
($value < 0) {
29
throw
new
ConstraintViolationException
(
30
sprintf(
'The value "%s" is not a positive integer'
, $value),
31
'exception_not_positive_integer'
,
32
array($value)
33
);
34
}
35
36
$this->value =
$value
;
37
}
38
42
public
function
getValue
() : int
43
{
44
return
(
int
)
$this->value
;
45
}
46
}
ILIAS\Data\PositiveInteger\$value
$value
Definition:
PositiveInteger.php:18
ILIAS\Data\PositiveInteger\getValue
getValue()
Definition:
PositiveInteger.php:42
ILIAS\Data\PositiveInteger
Definition:
PositiveInteger.php:13
ILIAS\Data\PositiveInteger\__construct
__construct(int $value)
Definition:
PositiveInteger.php:24
ILIAS\Refinery\ConstraintViolationException
Definition:
ConstraintViolationException.php:14
ConstraintViolationException
ILIAS\Data
Definition:
Alphanumeric.php:10
src
Data
PositiveInteger.php
Generated on Sat Apr 5 2025 20:01:37 for ILIAS by
1.8.13 (using
Doxyfile
)