1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
AIStep.php
См. документацию.
1<?php
2declare(strict_types=1);
3
5
7
8abstract class AIStep extends BaseStep
9{
11
12 public function __construct()
13 {
14 parent::__construct();
15 }
16
22 abstract public static function getConnectorClass(): string;
23
24 public function execute(): bool
25 {
26 return parent::execute() && isset($this->connector);
27 }
28}