%PDF- %PDF-
Direktori : /proc/self/root/home/bitrix/www/bitrix/modules/perfmon/lib/php/ |
Current File : //proc/self/root/home/bitrix/www/bitrix/modules/perfmon/lib/php/condition.php |
<?php namespace Bitrix\Perfmon\Php; class Condition { protected $predicate = ''; /** * @param string $predicate Php condition. */ function __construct($predicate) { $this->predicate = (string)$predicate; } /** * @return string */ public function getPredicate() { return $this->predicate; } }