| Current Path : /var/www/homesaver/www/bitrix/modules/sale/lib/exchange/integration/rest/cmd/ |
| Current File : /var/www/homesaver/www/bitrix/modules/sale/lib/exchange/integration/rest/cmd/cmdbase.php |
<?php
namespace Bitrix\Sale\Exchange\Integration\Rest\Cmd;
abstract class CmdBase extends Base
{
public function __construct()
{
parent::__construct();
$this->page = $this->getCmdName();
}
abstract protected function getCmdName();
}