ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.IRSSContainerExportConfig.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Dataset;
22 
24 
26 {
27  public function __construct(
28  protected StorableResource $source_container,
29  protected string $source_path,
30  protected string $target_path
31  ) {
32  }
33 
35  {
36  return $this->source_container;
37  }
38 
39  public function getSourcePath(): string
40  {
41  return $this->source_path;
42  }
43 
44  public function getTargetPath(): string
45  {
46  return $this->target_path;
47  }
48 }
__construct(protected StorableResource $source_container, protected string $source_path, protected string $target_path)