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