✏️ 正在编辑: xray-profiler-collector.php
路径:
/opt/alt/php-xray/php/profiler/classes/xray-profiler-collector.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * Copyright (с) Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2022 All Rights Reserved * * Licensed under CLOUD LINUX LICENSE AGREEMENT * https://www.cloudlinux.com/legal/ */ namespace XrayProfiler; if (!class_exists('\XrayProfiler\Collector')) { abstract class Collector { /** * @var array */ protected $data = array(); /** * @return array */ public function getData() { return $this->data; } /** * @param array $data * * @return void */ public function setData($data) { $this->data = $data; } /** * @return array */ abstract public function getXrayData(); /** * @return self */ abstract public function clean(); } }
💾 保存文件
← 返回文件管理器