ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
MultiLanguage.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
30{
31 public function __construct(
32 private ?TranslationsRepository $repository = null
33 ) {
34 }
35
36 public function isSupported(): bool
37 {
38 return $this->repository !== null;
39 }
40
42 {
43 return $this->repository;
44 }
45
46}
__construct(private ?TranslationsRepository $repository=null)