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 |
|
} |
cloudcontrol/library/storage/Storage.php 1 location
|
@@ 422-428 (lines=7) @@
|
| 419 |
|
* |
| 420 |
|
* @return ImageSetStorage |
| 421 |
|
*/ |
| 422 |
|
public function getImageSet() |
| 423 |
|
{ |
| 424 |
|
if (!$this->imageSet instanceof ImageSetStorage) { |
| 425 |
|
$this->imageSet = new ImageSetStorage($this->repository); |
| 426 |
|
} |
| 427 |
|
return $this->imageSet; |
| 428 |
|
} |
| 429 |
|
|
| 430 |
|
/** |
| 431 |
|
* @return array |