Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
Persister.php
1<?php
2
4
5class Persister extends \CBPWorkflowPersister
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}