<?php declare(strict_types=1);
namespace Shopware\Core\Framework\Api\Context;
class SalesChannelApiSource implements ContextSource
{
/**
* @var string
*/
private $salesChannelId;
public function __construct(string $salesChannelId)
{
$this->salesChannelId = $salesChannelId;
}
public function getSalesChannelId(): string
{
return $this->salesChannelId;
}
}