ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
LayoutServices.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
23 
26 
32 {
35 
39  public function __construct(string $resource_version)
40  {
41  $this->meta_content = new MetaContent(
42  $resource_version,
43  false,
44  true,
45  true,
46  false
47  );
48  $this->modification_factory = new ModificationFactory();
49  }
50 
54  public function factory(): ModificationFactory
55  {
57  }
58 
62  public function meta(): MetaContent
63  {
64  return $this->meta_content;
65  }
66 }
PhpIncompatibleReturnTypeInspection
__construct(string $resource_version)
LayoutServices constructor.