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