ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
class.RepoService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Survey\Participants
;
22
23
use
ILIAS\Survey\InternalDataService
;
24
29
class
RepoService
30
{
31
protected \ilDBInterface
$db
;
32
protected
InternalDataService
$data
;
33
34
public
function
__construct
(
35
InternalDataService
$data,
36
\
ilDBInterface
$db
37
) {
38
$this->db =
$db
;
39
$this->data =
$data
;
40
}
41
42
public
function
invitations
():
InvitationsDBRepository
43
{
44
return
new
InvitationsDBRepository
(
45
$this->data,
46
$this->db
47
);
48
}
49
}
ILIAS\Survey\Participants\RepoService\$db
ilDBInterface $db
Definition:
class.RepoService.php:31
ILIAS\Survey\Participants
Definition:
class.InvitationsDBRepository.php:21
ILIAS\Survey\Participants\InvitationsDBRepository
Survey invitations repository.
Definition:
class.InvitationsDBRepository.php:30
ILIAS\Survey\Execution\RepoService
Execution repos.
Definition:
class.RepoService.php:29
ILIAS\Survey\Participants\RepoService\__construct
__construct(InternalDataService $data, \ilDBInterface $db)
Definition:
class.RepoService.php:34
ILIAS\Survey\Participants\RepoService\$data
InternalDataService $data
Definition:
class.RepoService.php:32
ILIAS\Survey\Participants\RepoService\invitations
invitations()
Definition:
class.RepoService.php:42
ILIAS\Survey\Execution\RepoService\$db
ilDBInterface $db
Definition:
class.RepoService.php:31
ilDBInterface
ILIAS\Survey\Execution\RepoService\$data
InternalDataService $data
Definition:
class.RepoService.php:32
ILIAS\Survey\InternalDataService
Survey internal data service.
Definition:
class.InternalDataService.php:27
InternalDataService
components
ILIAS
Survey
Participants
Service
class.RepoService.php
Generated on Wed Sep 3 2025 23:02:40 for ILIAS by
1.8.13 (using
Doxyfile
)