ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilHandler.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
28  private StatusType $type;
30 
31  public function __construct()
32  {
33  $this->type = StatusType::NONE;
34  }
35 
36  public function getType(): StatusType
37  {
38  return $this->type;
39  }
40 
42  {
43  $clone = clone $this;
44  $clone->type = $type;
45  return $clone;
46  }
47 
49  {
50  return $this->content;
51  }
52 
54  {
55  $clone = clone $this;
56  $clone->content = $content;
57  return $clone;
58  }
59 }
ilImportStatusContentInterface $content
withContent(ilImportStatusContentInterface $content)