ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Group.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
26class Group
27{
29 private \ILIAS\Language\Language $language;
30
32 {
33 $this->dataFactory = $dataFactory;
34 $this->language = $language;
35 }
36
37 public function isNumeric(): Constraint
38 {
39 return new IsNumeric($this->dataFactory, $this->language);
40 }
41}
Builds data types.
Definition: Factory.php:36
ILIAS Language Language $language
Definition: Group.php:29
__construct(Factory $dataFactory, \ILIAS\Language\Language $language)
Definition: Group.php:31
A constraint encodes some resrtictions on values.
Definition: Constraint.php:32
Interface Observer \BackgroundTasks Contains several chained tasks and infos about them.