ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
IsNull.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Refinery;
22 
24 use ILIAS\Data;
25 
26 class IsNull extends Constraint
27 {
29  {
31  static function ($value): bool {
32  return is_null($value);
33  },
34  static function ($txt, $value): string {
35  return $txt("not_a_null", gettype($value));
36  },
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
__construct(Data\Factory $data_factory, \ILIAS\Language\Language $lng)
Definition: IsNull.php:28
$txt
Definition: error.php:31
__construct(Container $dic, ilPlugin $plugin)