ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
Converters.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
29  private Images $images;
31 
32  public function __construct()
33  {
34  $this->images = new Images();
35  $this->legacy_images = new LegacyImages();
36  }
37 
38  public function images(): Images
39  {
40  return $this->images;
41  }
42 
43  public function legacyImages(): LegacyImages
44  {
45  return $this->legacy_images;
46  }
47 }