Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/public_html/wp-content/plugins/wp-console/includes/Core/Console/Psy/ |
Upload File : |
<?php namespace WPConsole\Core\Console\Psy; use Psy\Configuration; use Psy\Exception\ErrorException; use Psy\Shell as PsyShell; class Shell extends PsyShell { /** * Return value indicator override * * @since 1.0.0 * * @var string */ const RETVAL = ''; /** * Shell Configuration * * @since 1.1.0 * * @var \Psy\Configuration */ private $config; /** * Create a new Psy Shell. * * @since 1.1.0 * * @param \Psy\Configuration|null $config * * @return void */ public function __construct( Configuration $config = null ) { $this->config = $config; parent::__construct( $config ); } /** * Helper for throwing an ErrorException. * * @since 1.1.0 * @since 1.2.0 Using $errfile and remove line number increament * * @param int $errno Error type * @param string $errstr Message * @param string $errfile Filename * @param int $errline Line number * * @return void */ public function handleError( $errno, $errstr, $errfile, $errline ) { $this->config->getOutput()->exception = new ErrorException( $errstr, 0, $errno, $errfile, $errline ); } }