ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
29 class Factory implements I\Factory
30 {
31  public function standard(
32  Symbol | Image | ShyButton | ShyLink | string $primary_identifier,
33  Symbol | Image | ShyButton | ShyLink | string $secondary_identifier
34  ): Standard {
35  return new Standard($primary_identifier, $secondary_identifier);
36  }
37 }
This describes a symbol.
Definition: Symbol.php:29
standard(Symbol|Image|ShyButton|ShyLink|string $primary_identifier, Symbol|Image|ShyButton|ShyLink|string $secondary_identifier)
Definition: Factory.php:31