1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
cmdbase.php
См. документацию.
1<?php
2
3
4namespace Bitrix\Sale\Exchange\Integration\Rest\Cmd;
5
6
7abstract class CmdBase extends Base
8{
9 public function __construct()
10 {
11 parent::__construct();
12
13 $this->page = $this->getCmdName();
14 }
15
16 abstract protected function getCmdName();
17}