ILIAS  release_8 Revision v8.24
class.ilCertificateTestTemplateDeleteAction.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
25{
28
29 public function __construct(
32 ) {
33 $this->deleteAction = $deleteAction;
34 $this->objectHelper = $objectHelper;
35 }
36
37 public function delete(int $templateId, int $objectId): void
38 {
39 $this->deleteAction->delete($templateId, $objectId);
40 }
41}
__construct(ilCertificateDeleteAction $deleteAction, ilCertificateObjectHelper $objectHelper)