ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.IRSSContainerExportConfig.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace 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)