ILIAS  release_8 Revision v8.24
Group.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
22
25use ilLanguage;
26
27class Group
28{
31
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}
Builds data types.
Definition: Factory.php:21
__construct(Factory $dataFactory, ilLanguage $language)
Definition: Group.php:32
language handling
A constraint encodes some resrtictions on values.
Definition: Constraint.php:32
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Group.php:21