ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.InternalRepoService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MediaCast
;
22
23
use
ILIAS\MediaCast\Settings\SettingsDBRepository
;
24
25
class
InternalRepoService
26
{
27
protected
static
array
$instance
= [];
28
29
public
function
__construct
(
30
protected
InternalDataService
$data
,
31
protected
\
ilDBInterface
$db
32
) {
33
}
34
35
public
function
settings
(): SettingsDBRepository
36
{
37
return
self::$instance[
"settings"
] ??=
new
SettingsDBRepository(
38
$this->db,
39
$this->data
40
);
41
}
42
43
}
ILIAS\MediaCast\InternalRepoService\__construct
__construct(protected InternalDataService $data, protected \ilDBInterface $db)
Definition:
class.InternalRepoService.php:29
$data
$data
Definition:
ltiregistration.php:29
ILIAS\MediaCast\InternalDataService
Definition:
class.InternalDataService.php:25
ILIAS\MediaCast\InternalRepoService
Definition:
class.InternalRepoService.php:25
ILIAS\MediaCast\InternalRepoService\settings
settings()
Definition:
class.InternalRepoService.php:35
ilDBInterface
ILIAS\MediaCast
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
SettingsDBRepository
ILIAS\$db
$db
Definition:
class.ilias.php:60
ILIAS\MediaCast\InternalRepoService\$instance
static array $instance
Definition:
class.InternalRepoService.php:27
components
ILIAS
MediaCast
Service
class.InternalRepoService.php
Generated on Sun Aug 31 2025 23:02:14 for ILIAS by
1.8.13 (using
Doxyfile
)