ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
HandlerResult.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 
4 
6 
13 {
14  public const STATUS_OK = 1;
15  public const STATUS_FAILED = 2;
16 
17 
18  public function getStatus() : int;
19 
20 
21  public function getFileIdentifier() : string;
22 
23 
24  public function getMessage() : string;
25 }