* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ namespace PrestaShop\Module\PsAccounts\Account\Command; class UnlinkShopCommand { /** * @var int */ public $shopId; /** * @var string|null */ public $errorMsg; /** * @param int $shopId * @param string $errorMsg */ public function __construct($shopId, $errorMsg = '') { $this->shopId = $shopId; $this->errorMsg = $errorMsg; } }