ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.DomainService.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26
28{
29 public function __construct(
30 protected InternalRepoService $repo,
31 protected InternalDomainService $domain_service
32 ) {
33 }
34
36 {
37 return new CriteriaFileManager(
38 $this->repo,
39 $this->domain_service,
42 );
43 }
44
45 public function exPeerReview(\ilExAssignment $ass): ?\ilExPeerReview
46 {
47 if ($ass->getPeerReview()) {
48 return new \ilExPeerReview($ass);
49 }
50 return null;
51 }
52
53}
__construct(protected InternalRepoService $repo, protected InternalDomainService $domain_service)
Exercise assignment.
Exercise peer review.