* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Supplier\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Supplier\Query\GetSupplierForViewing; use PrestaShop\PrestaShop\Core\Domain\Supplier\QueryResult\ViewableSupplier; /** * Interface for service that handles query to get supplier for viewing */ interface GetSupplierForViewingHandlerInterface { /** * @param GetSupplierForViewing $query * * @return ViewableSupplier */ public function handle(GetSupplierForViewing $query); }