cloudcontrol/library/storage/Storage.php 1 location
|
@@ 699-705 (lines=7) @@
|
| 696 |
|
* |
| 697 |
|
* @return ImageSetStorage |
| 698 |
|
*/ |
| 699 |
|
public function getImageSet() |
| 700 |
|
{ |
| 701 |
|
if (!$this->imageSet instanceof ImageSetStorage) { |
| 702 |
|
$this->imageSet = new ImageSetStorage($this->repository); |
| 703 |
|
} |
| 704 |
|
return $this->imageSet; |
| 705 |
|
} |
| 706 |
|
|
| 707 |
|
/** |
| 708 |
|
* @return array |
cloudcontrol/library/storage/storage/ImagesStorage.php 1 location
|
@@ 109-115 (lines=7) @@
|
| 106 |
|
/** |
| 107 |
|
* @return \library\storage\storage\ImageSetStorage |
| 108 |
|
*/ |
| 109 |
|
private function getImageSet() |
| 110 |
|
{ |
| 111 |
|
if (!$this->imageSet instanceof ImageSetStorage) { |
| 112 |
|
$this->imageSet = new ImageSetStorage($this->repository); |
| 113 |
|
} |
| 114 |
|
return $this->imageSet; |
| 115 |
|
} |
| 116 |
|
} |