add set media fields
This commit is contained in:
parent
1ce7688d33
commit
fa8efd765f
10 changed files with 61 additions and 21 deletions
|
|
@ -19,6 +19,8 @@ class FakeSetRepository implements SetRepository
|
|||
$set = new DomainSet(
|
||||
id: $id,
|
||||
name: $dto->name,
|
||||
description: $dto->description,
|
||||
iconImageUrl: $dto->iconImageUrl,
|
||||
);
|
||||
$this->setsById[$id] = $set;
|
||||
|
||||
|
|
@ -52,6 +54,8 @@ class FakeSetRepository implements SetRepository
|
|||
return new DomainSet(
|
||||
id: $set->getId(),
|
||||
name: $set->getName(),
|
||||
description: $set->getDescription(),
|
||||
iconImageUrl: $set->getIconImageUrl(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue