ILIAS  trunk Revision v11.0_alpha-1831-g8615d53dadb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ILIAS\Refinery\String\HasMinLength Class Reference
+ Inheritance diagram for ILIAS\Refinery\String\HasMinLength:
+ Collaboration diagram for ILIAS\Refinery\String\HasMinLength:

Public Member Functions

 __construct (int $min_length, Data\Factory $data_factory, \ILIAS\Language\Language $lng)
 
- Public Member Functions inherited from ILIAS\Refinery\Constraint
 check ($value)
 Checks the provided value. More...
 
 accepts ($value)
 Tells if the provided value complies. More...
 
 problemWith ($value)
 Tells what the problem with the provided value is. More...
 
 applyTo (Result $result)
 Restricts a Result. More...
 
 withProblemBuilder (callable $builder)
 Get a constraint like this one with a builder for a custom error message. More...
 
- Public Member Functions inherited from ILIAS\Refinery\Transformation
 transform ($from)
 Perform the transformation. More...
 
 __invoke ($from)
 Transformations should be callable. More...
 

Detailed Description

Definition at line 26 of file HasMinLength.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Refinery\String\HasMinLength::__construct ( int  $min_length,
Data\Factory  $data_factory,
\ILIAS\Language\Language  $lng 
)

Definition at line 28 of file HasMinLength.php.

References $lng, $txt, and ILIAS\GlobalScreen\Provider\__construct().

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  }
$txt
Definition: error.php:31
__construct(Container $dic, ilPlugin $plugin)
global $lng
Definition: privfeed.php:31
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: