ILIAS
release_8 Revision v8.23
◀ ilDoc Overview
Group.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Refinery\Numeric
;
22
23
use
ILIAS\Data\Factory
;
24
use
ILIAS\Refinery\Constraint
;
25
use
ilLanguage
;
26
27
class
Group
28
{
29
private
Factory
$dataFactory
;
30
private
ilLanguage
$language
;
31
32
public
function
__construct
(
Factory
$dataFactory,
ilLanguage
$language)
33
{
34
$this->dataFactory =
$dataFactory
;
35
$this->
language
=
$language
;
36
}
37
38
public
function
isNumeric
():
Constraint
39
{
40
return
new
IsNumeric
($this->dataFactory, $this->
language
);
41
}
42
}
ILIAS\Refinery\Numeric\Group\isNumeric
isNumeric()
Definition:
Group.php:38
ilLanguage
ILIAS\Refinery\Constraint
A constraint encodes some resrtictions on values.
Definition:
Constraint.php:31
ILIAS\Refinery\Numeric
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
Group.php:21
ILIAS\Refinery\Numeric\IsNumeric
Definition:
IsNumeric.php:27
ILIAS\Refinery\Numeric\Group\$language
ilLanguage $language
Definition:
Group.php:30
ILIAS\Refinery\Numeric\Group\__construct
__construct(Factory $dataFactory, ilLanguage $language)
Definition:
Group.php:32
Factory
Factory
ILIAS\Refinery\Numeric\Group\$dataFactory
Factory $dataFactory
Definition:
Group.php:29
ILIAS\Refinery\Numeric\Group
Definition:
Group.php:27
ILIAS\UI\examples\Symbol\Glyph\Language\language
language()
Definition:
language.php:7
Constraint
src
Refinery
Numeric
Group.php
Generated on Wed Sep 3 2025 22:02:55 for ILIAS by
1.8.13 (using
Doxyfile
)