ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
FileStreamRevision.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
31 class FileStreamRevision extends FileRevision implements Revision
32 {
36  public function __construct(
38  private FileStream $stream,
39  protected bool $keep_original = false
40  ) {
41  parent::__construct($identification);
44  }
45 
46  public function getStream(): FileStream
47  {
48  return $this->stream;
49  }
50 
51  public function keepOriginal(): bool
52  {
53  return $this->keep_original;
54  }
55 }
setInformation(Information $information)
__construct(ResourceIdentification $identification, private FileStream $stream, protected bool $keep_original=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
The base interface for all filesystem streams.
Definition: FileStream.php:31