ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
LayoutServices.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
23 
27 
33 {
36 
40  public function __construct(string $resource_version)
41  {
42  $this->meta_content = new MetaContent(
43  $resource_version,
44  false,
45  true,
46  true,
47  false
48  );
49  $this->modification_factory = new ModificationFactory();
50  }
51 
55  public function factory(): ModificationFactory
56  {
58  }
59 
63  public function meta(): MetaContent
64  {
65  return $this->meta_content;
66  }
67 }
trait SingletonTrait
Class SingletonTrait.
PhpIncompatibleReturnTypeInspection
__construct(string $resource_version)
LayoutServices constructor.