1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
cleanagent.php
См. документацию.
1<?php
2
4
6{
7 private static $processing = false;
8
9 public static function execute()
10 {
11 if (self::$processing)
12 {
13 return self::getAgentName();
14 }
15
16 LiveWatchService::getInstance()->removeStaleRecords();
17
18 return self::getAgentName();
19 }
20
24 private static function getAgentName(): string
25 {
26 return static::class . "::execute();";
27 }
28}