ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ProcessingStatus.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\FileUpload\DTO;
20 
34 final class ProcessingStatus
35 {
40  public const OK = 1;
45  public const REJECTED = 2;
50  public const PENDING = 3;
55  public const DENIED = 4;
56 
57  private int $code;
58 
70  public function __construct(int $code, private string $message)
71  {
72  if (!in_array($code, [self::OK, self::REJECTED, self::DENIED, self::PENDING], true)) {
73  throw new \InvalidArgumentException(
74  'Invalid upload status code received. The code must be OK or REJECTED.'
75  );
76  }
77 
78  $this->code = $code;
79  }
80 
81  public function getCode(): int
82  {
83  return $this->code;
84  }
85 
86  public function getMessage(): string
87  {
88  return $this->message;
89  }
90 }
__construct(int $code, private string $message)
ProcessingStatus constructor.
$message
Definition: xapiexit.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Metadata.php:19