ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ 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\Execution\RepoService
Execution repos.
Definition:
class.RepoService.php:30
ILIAS\Survey\Execution\RepoService\$data
InternalDataService $data
Definition:
class.RepoService.php:32
ILIAS\Survey\Execution\RepoService\$db
ilDBInterface $db
Definition:
class.RepoService.php:31
ILIAS\Survey\InternalDataService
Survey internal data service.
Definition:
class.InternalDataService.php:28
ILIAS\Survey\Participants\InvitationsDBRepository
Survey invitations repository.
Definition:
class.InvitationsDBRepository.php:31
ILIAS\Survey\Participants\RepoService\$data
InternalDataService $data
Definition:
class.RepoService.php:32
ILIAS\Survey\Participants\RepoService\__construct
__construct(InternalDataService $data, \ilDBInterface $db)
Definition:
class.RepoService.php:34
ILIAS\Survey\Participants\RepoService\$db
ilDBInterface $db
Definition:
class.RepoService.php:31
ILIAS\Survey\Participants\RepoService\invitations
invitations()
Definition:
class.RepoService.php:42
ilDBInterface
Interface ilDBInterface.
Definition:
interface.ilDBInterface.php:30
ILIAS\Survey\Participants
Definition:
class.InvitationsDBRepository.php:21
components
ILIAS
Survey
Participants
Service
class.RepoService.php
Generated on Sat Oct 18 2025 23:02:50 for ILIAS by
1.9.4 (using
Doxyfile
)