ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HasNumbers.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Refinery\Password;
22 
24 use ILIAS\Data;
25 
26 class HasNumbers extends Constraint
27 {
28  public function __construct(Data\Factory $data_factory, \ILIAS\Language\Language $lng)
29  {
31  static function (Data\Password $value): bool {
32  return (bool) preg_match('/[0-9]/', $value->toString());
33  },
34  static function ($value): string {
35  return "Password must contain numbers.";
36  },
37  $data_factory,
38  $lng
39  );
40  }
41 }
__construct(Data\Factory $data_factory, \ILIAS\Language\Language $lng)
Definition: HasNumbers.php:28
Interface Observer Contains several chained tasks and infos about them.
A password is used as part of credentials for authentication.
Definition: Password.php:30
Builds data types.
Definition: Factory.php:35
__construct(Container $dic, ilPlugin $plugin)
global $lng
Definition: privfeed.php:31