1234567891011121314151617181920212223 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\InventoryCatalogApi\Model;
- /**
- * Service checks if the system has multiple sources configured and enabled
- *
- * @api
- */
- interface IsSingleSourceModeInterface
- {
- /**
- * Check if system has more than one enabled Source configured
- *
- * @return bool
- */
- public function execute(): bool;
- }
|