X7ROOT File Manager
Current Path:
/usr/src/litespeed-wp-plugin/7.6.2/litespeed-cache/cli
usr
/
src
/
litespeed-wp-plugin
/
7.6.2
/
litespeed-cache
/
cli
/
??
..
??
crawler.cls.php
(5.85 KB)
??
database.cls.php
(4.96 KB)
??
debug.cls.php
(718 B)
??
image.cls.php
(3.68 KB)
??
online.cls.php
(8.51 KB)
??
option.cls.php
(10.06 KB)
??
presets.cls.php
(1.83 KB)
??
purge.cls.php
(7.06 KB)
Editing: debug.cls.php
<?php /** * Debug API CLI for LiteSpeed integration. * * @package LiteSpeed\CLI */ namespace LiteSpeed\CLI; defined( 'WPINC' ) || exit(); use LiteSpeed\Debug2; use LiteSpeed\Report; use WP_CLI; /** * Debug API CLI */ class Debug { /** * Report instance. * * @var Report */ private $report; /** * Constructor for Debug CLI. */ public function __construct() { Debug2::debug( 'CLI_Debug init' ); $this->report = Report::cls(); } /** * Send report * * ## OPTIONS * * ## EXAMPLES * * # Send env report to LiteSpeed * $ wp litespeed-debug send */ public function send() { $num = $this->report->post_env(); WP_CLI::success( 'Report Number = ' . $num ); } }
Upload File
Create Folder