ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
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)