Skip to content
Snippets Groups Projects

ZERO-162-changes

Open Eduarda Lentz Rodrigues da Silva requested to merge ZERO-162-changes into develop
Compare and Show latest version
7 files
+ 114
34
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -27,15 +27,15 @@ interface CmsBlockStoreRepositoryInterface
* Get CMS Block store code by its row id.
*
* @param int $rowId
* @return string[]
* @return int[]
*/
public function getStoreCodesByRowId(int $rowId): array;
public function getStoreIdsByRowId(int $rowId): array;
/**
* Get CMS Block store code by its block id.
*
* @param int $blockId
* @return string[]
* @return int[]
*/
public function getStoreCodesByBlockId(int $blockId): array;
public function getStoreIdsByBlockId(int $blockId): array;
}
Loading