: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
namespace AmpProject\Cli;
* A command that is registered with the amp executable.
* @package AmpProject\Cli
* This needs to be overridden in extending commands.
const NAME = '<unknown>';
* Get the name of the command.
* @return string Name of the command.
public function getName()
* @param Options $options Options instance to register the command with.
abstract public function register(Options $options);
* Arguments and options have been parsed when this is run.
* @param Options $options Options instance to process the command with.
abstract public function process(Options $options);