1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
Persister.php
См. документацию.
1<?php
2
3namespace Bitrix\Bizproc\Debugger\Workflow;
4
6{
7 private static $debugInstance = null;
8
9 public static function getPersister(): self
10 {
11 if (!isset(static::$debugInstance))
12 {
13 static::$debugInstance = new static();
14 }
15
16 return static::$debugInstance;
17 }
18}