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
10 files
+ 172
27
Compare changes
  • Side-by-side
  • Inline
Files
10
+ 30
0
<?php
declare(strict_types=1);
/**
* Copyright (c) 2025 TechDivision GmbH
* All rights reserved
*
* This product includes proprietary software developed at TechDivision GmbH, Germany
* For more information see https://www.techdivision.com/
*
* To obtain a valid license for using this software please contact us at
* license@techdivision.com
*
* @copyright Copyright (c) 2025 TechDivision GmbH (https://www.techdivision.com)
* @author TechDivision Team Zero <zero@techdivision.com>
* @link https://www.techdivision.com/
*/
namespace Firegento\ContentProvisioning\Api;
interface CmsBlockStoreRepositoryInterface
{
/**
* Get CMS Block store by cms block row id.
*
* @param string $rowId
* @return array
*/
public function getStoreByRowId(string $rowId): array;
}
Loading