ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
Group.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
3
5
8
12class Group
13{
17 private $dataFactory;
18
22 private $language;
23
25 {
26 $this->dataFactory = $dataFactory;
27 $this->language = $language;
28 }
29
30 public function isNumeric() : IsNumeric
31 {
32 return new IsNumeric($this->dataFactory, $this->language);
33 }
34}
An exception for terminatinating execution or to throw for unit testing.
Builds data types.
Definition: Factory.php:20
__construct(Factory $dataFactory, \ilLanguage $language)
Definition: Group.php:24
language handling
language()
Definition: language.php:2