...Человеческий поиск в разработке...
- Модуль: tasks
- Путь к файлу: ~/bitrix/modules/tasks/lib/dispatcher/runtimeoperation.php
- Класс: BitrixTasksDispatcherRunTimeOperation
- Вызов: RunTimeOperation::parse
public function parse() { if(is_callable($this->callable)) { $reflection = new ReflectionFunction($this->callable); if($reflection->isClosure()) { // todo: check arguments } else { // raise an error $this->addParseError('Runtime action is not a closure'); } } else { // raise an error $this->addParseError('Runtime action is not callable'); } }