Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/accelera.../includes/vendor/tool/Cli
File: Command.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace AmpProject\Cli;
[2] Fix | Delete
[3] Fix | Delete
/**
[4] Fix | Delete
* A command that is registered with the amp executable.
[5] Fix | Delete
*
[6] Fix | Delete
* @package AmpProject\Cli
[7] Fix | Delete
*/
[8] Fix | Delete
abstract class Command
[9] Fix | Delete
{
[10] Fix | Delete
[11] Fix | Delete
/**
[12] Fix | Delete
* Name of the command.
[13] Fix | Delete
*
[14] Fix | Delete
* This needs to be overridden in extending commands.
[15] Fix | Delete
*
[16] Fix | Delete
* @var string
[17] Fix | Delete
*/
[18] Fix | Delete
const NAME = '<unknown>';
[19] Fix | Delete
[20] Fix | Delete
/**
[21] Fix | Delete
* Get the name of the command.
[22] Fix | Delete
*
[23] Fix | Delete
* @return string Name of the command.
[24] Fix | Delete
*/
[25] Fix | Delete
public function getName()
[26] Fix | Delete
{
[27] Fix | Delete
return static::NAME;
[28] Fix | Delete
}
[29] Fix | Delete
[30] Fix | Delete
/**
[31] Fix | Delete
* Register the command.
[32] Fix | Delete
*
[33] Fix | Delete
* @param Options $options Options instance to register the command with.
[34] Fix | Delete
*/
[35] Fix | Delete
abstract public function register(Options $options);
[36] Fix | Delete
[37] Fix | Delete
/**
[38] Fix | Delete
* Process the command.
[39] Fix | Delete
*
[40] Fix | Delete
* Arguments and options have been parsed when this is run.
[41] Fix | Delete
*
[42] Fix | Delete
* @param Options $options Options instance to process the command with.
[43] Fix | Delete
*/
[44] Fix | Delete
abstract public function process(Options $options);
[45] Fix | Delete
}
[46] Fix | Delete
[47] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function