ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
interface.ilFactoryInterface.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23use ILIAS\Export\ImportStatus\I\Content\ilFactoryInterface as ilImportStatusContentFactoryInterface;
24use ILIAS\Export\ImportStatus\I\ilHandlerInterface as ilImportStatusHandlerInterface;
25use ILIAS\Export\ImportStatus\I\ilCollectionInterface as ilImportStatusHandlerCollectionInterface;
26use ILIAS\Export\ImportStatus\I\Exception\ilExceptionInterface as ilImportStatusExceptionInterface;
27
29{
30 public function content(): ilImportStatusContentFactoryInterface;
31
32 public function handler(): ilImportStatusHandlerInterface;
33
34 public function collection(): ilImportStatusHandlerCollectionInterface;
35
36 public function exception(string $msg): ilImportStatusExceptionInterface;
37}