Server IP : 66.29.132.122 / Your IP : 18.191.42.234 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/self/root/proc/thread-self/root/proc/self/root/usr/src/litespeed-wp-plugin/6.2.0.1/litespeed-cache/cli/ |
Upload File : |
<?php namespace LiteSpeed\CLI; defined('WPINC') || exit(); use LiteSpeed\Debug2; use LiteSpeed\Report; use WP_CLI; /** * Debug API CLI */ class Debug { private $__report; 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); } }