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/Configur...
File: ConfigEngineInterface.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
[2] Fix | Delete
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
[3] Fix | Delete
*
[4] Fix | Delete
* Licensed under The MIT License
[5] Fix | Delete
* For full copyright and license information, please see the LICENSE.txt
[6] Fix | Delete
* Redistributions of files must retain the above copyright notice.
[7] Fix | Delete
*
[8] Fix | Delete
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
[9] Fix | Delete
* @link https://cakephp.org CakePHP(tm) Project
[10] Fix | Delete
* @since 1.0.0
[11] Fix | Delete
* @license https://opensource.org/licenses/mit-license.php MIT License
[12] Fix | Delete
*/
[13] Fix | Delete
namespace Cake\Core\Configure;
[14] Fix | Delete
[15] Fix | Delete
/**
[16] Fix | Delete
* An interface for creating objects compatible with Configure::load()
[17] Fix | Delete
*/
[18] Fix | Delete
interface ConfigEngineInterface
[19] Fix | Delete
{
[20] Fix | Delete
/**
[21] Fix | Delete
* Read a configuration file/storage key
[22] Fix | Delete
*
[23] Fix | Delete
* This method is used for reading configuration information from sources.
[24] Fix | Delete
* These sources can either be static resources like files, or dynamic ones like
[25] Fix | Delete
* a database, or other datasource.
[26] Fix | Delete
*
[27] Fix | Delete
* @param string $key Key to read.
[28] Fix | Delete
* @return array An array of data to merge into the runtime configuration
[29] Fix | Delete
*/
[30] Fix | Delete
public function read($key);
[31] Fix | Delete
[32] Fix | Delete
/**
[33] Fix | Delete
* Dumps the configure data into the storage key/file of the given `$key`.
[34] Fix | Delete
*
[35] Fix | Delete
* @param string $key The identifier to write to.
[36] Fix | Delete
* @param array $data The data to dump.
[37] Fix | Delete
* @return bool True on success or false on failure.
[38] Fix | Delete
*/
[39] Fix | Delete
public function dump($key, array $data);
[40] Fix | Delete
}
[41] Fix | Delete
[42] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function