ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
LessThan.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Refinery\Integer;
22 
23 use ILIAS\Data;
25 
26 class LessThan extends Constraint
27 {
28  public function __construct(int $max, Data\Factory $data_factory, \ILIAS\Language\Language $lng)
29  {
31  static function ($value) use ($max): bool {
32  return $value < $max;
33  },
34  static function ($txt, $value) use ($max): string {
35  return (string) $txt("not_less_than", $value, $max);
36  },
37  $data_factory,
38  $lng
39  );
40  }
41 }
Interface Observer Contains several chained tasks and infos about them.
A constraint encodes some resrtictions on values.
Definition: Constraint.php:31
Builds data types.
Definition: Factory.php:35
$txt
Definition: error.php:31
__construct(Container $dic, ilPlugin $plugin)
global $lng
Definition: privfeed.php:31
__construct(int $max, Data\Factory $data_factory, \ILIAS\Language\Language $lng)
Definition: LessThan.php:28