File manager - Edit - /home/c14075/dragmet-ural.ru/www/bitrix/modules/bizproc/lib/Debugger/Session/DebuggerState.php
Back
<?php namespace Bitrix\Bizproc\Debugger\Session; class DebuggerState { public const RUN = 0; public const NEXT_STEP = 1; public const STOP = 2; public const PAUSE = 3; public const UNDEFINED = -1; private int $stateId; public function __construct(int $stateId) { $this->stateId = $stateId; } public static function undefined(): self { return new self(self::UNDEFINED); } public static function run(): self { return new self(self::RUN); } public static function nextStep(): self { return new self(self::NEXT_STEP); } public static function pause(): self { return new self(self::PAUSE); } public static function stop(): self { return new self(self::STOP); } public function is(int $stateId): bool { return $this->stateId === $stateId; } public function getId(): int { return $this->stateId; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.24 |
proxy
|
phpinfo
|
Settings