get('core'); try { $folder = $appData->getFolder('text2image')->getFolder((string)$this->getId()); $images = []; for ($i = 0; $i < $this->getNumberOfImages(); $i++) { $image = new Image(); $image->loadFromFileHandle($folder->getFile((string)$i)->read()); $images[] = $image; } return $images; } catch (NotFoundException|NotPermittedException) { return null; } } /** * @return int * @since 28.0.0 */ final public function getNumberOfImages(): int { return $this->numberOfImages; } /** * @psalm-return self::STATUS_* * @since 28.0.0 */ final public function getStatus(): int { return $this->status; } /** * @psalm-param self::STATUS_* $status * @since 28.0.0 */ final public function setStatus(int $status): void { $this->status = $status; } /** * @param ?DateTime $at * @since 28.0.0 */ final public function setCompletionExpectedAt(?DateTime $at): void { $this->completionExpectedAt = $at; } /** * @return ?DateTime * @since 28.0.0 */ final public function getCompletionExpectedAt(): ?DateTime { return $this->completionExpectedAt; } /** * @return int|null * @since 28.0.0 */ final public function getId(): ?int { return $this->id; } /** * @param int|null $id * @since 28.0.0 */ final public function setId(?int $id): void { $this->id = $id; } /** * @return string * @since 28.0.0 */ final public function getInput(): string { return $this->input; } /** * @return string * @since 28.0.0 */ final public function getAppId(): string { return $this->appId; } /** * @return null|string * @since 28.0.0 */ final public function getIdentifier(): ?string { return $this->identifier; } /** * @return string|null * @since 28.0.0 */ final public function getUserId(): ?string { return $this->userId; } /** * @psalm-return array{id: ?int, status: self::STATUS_*, userId: ?string, appId: string, input: string, identifier: ?string, numberOfImages: int, completionExpectedAt: ?int} * @since 28.0.0 */ public function jsonSerialize(): array { return [ 'id' => $this->getId(), 'status' => $this->getStatus(), 'userId' => $this->getUserId(), 'appId' => $this->getAppId(), 'numberOfImages' => $this->getNumberOfImages(), 'input' => $this->getInput(), 'identifier' => $this->getIdentifier(), 'completionExpectedAt' => $this->getCompletionExpectedAt()->getTimestamp(), ]; } }