1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
runtimeservice.php
См. документацию.
1<?php
2
3abstract class CBPRuntimeService
4{
5 protected $runtime;
6
7 public function setRuntime(CBPRuntime $runtime)
8 {
9 $this->runtime = $runtime;
10 }
11
12 public function start(CBPRuntime $runtime = null)
13 {
14 if ($runtime != null)
15 $this->SetRuntime($runtime);
16 }
17
18 public function stop()
19 {
20
21 }
22}
$runtime
Определения runtimeservice.php:5
stop()
Определения runtimeservice.php:18
setRuntime(CBPRuntime $runtime)
Определения runtimeservice.php:7
start(CBPRuntime $runtime=null)
Определения runtimeservice.php:12