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/clone/wp-conte.../plugins/flow-flo.../libs/cakephp/core
File: ConsoleApplicationInterface.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
[2] Fix | Delete
* Copyright 2005-2011, Cake Software Foundation, Inc. (https://cakefoundation.org)
[3] Fix | Delete
*
[4] Fix | Delete
* Licensed under The MIT License
[5] Fix | Delete
* Redistributions of files must retain the above copyright notice.
[6] Fix | Delete
*
[7] Fix | Delete
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
[8] Fix | Delete
* @link https://cakephp.org CakePHP(tm) Project
[9] Fix | Delete
* @since 3.5.0
[10] Fix | Delete
* @license https://opensource.org/licenses/mit-license.php MIT License
[11] Fix | Delete
*/
[12] Fix | Delete
namespace Cake\Core;
[13] Fix | Delete
[14] Fix | Delete
/**
[15] Fix | Delete
* An interface defining the methods that the
[16] Fix | Delete
* console runner depend on.
[17] Fix | Delete
*/
[18] Fix | Delete
interface ConsoleApplicationInterface
[19] Fix | Delete
{
[20] Fix | Delete
/**
[21] Fix | Delete
* Load all the application configuration and bootstrap logic.
[22] Fix | Delete
*
[23] Fix | Delete
* Override this method to add additional bootstrap logic for your application.
[24] Fix | Delete
*
[25] Fix | Delete
* @return void
[26] Fix | Delete
*/
[27] Fix | Delete
public function bootstrap();
[28] Fix | Delete
[29] Fix | Delete
/**
[30] Fix | Delete
* Define the console commands for an application.
[31] Fix | Delete
*
[32] Fix | Delete
* @param \Cake\Console\CommandCollection $commands The CommandCollection to add commands into.
[33] Fix | Delete
* @return \Cake\Console\CommandCollection The updated collection.
[34] Fix | Delete
*/
[35] Fix | Delete
public function console($commands);
[36] Fix | Delete
}
[37] Fix | Delete
[38] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function