ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Name.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 class Name
24 {
25  private const PROPER_NAME_REGEXP = "/\w+([\\\\]\w+){2,}/";
26 
27  public function __construct(
28  protected string $name
29  ) {
30  if (!preg_match(self::PROPER_NAME_REGEXP, $this->name)) {
31  throw new \InvalidArgumentException(
32  "{$this->name} is not a proper name for a dependency."
33  );
34  }
35  }
36 
37  public function __toString(): string
38  {
39  return $this->name;
40  }
41 }
__construct(protected string $name)
Definition: Name.php:27