: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @license https://opensource.org/licenses/mit-license.php MIT License
use BadMethodCallException;
use InvalidArgumentException;
* A trait that provides a set of static methods to manage configuration
* for classes that provide an adapter facade or need to have sets of
* configuration data registered and manipulated.
* Implementing objects are expected to declare a static `$_dsnClassMap` property.
protected static $_config = [];
* This method can be used to define configuration adapters for an application.
* To change an adapter's configuration at runtime, first drop the adapter and then
* Adapters will not be constructed until the first operation is done.
* Assuming that the class' name is `Cache` the following scenarios
* Setting a cache engine up.
* Cache::setConfig('default', $settings);
* Injecting a constructed adapter in:
* Cache::setConfig('default', $instance);
* Configure multiple adapters at once:
* Cache::setConfig($arrayOfConfig);
* @param string|array $key The name of the configuration, or an array of multiple configs.
* @param array|object|null $config An array of name => configuration data for adapter.
* @throws \BadMethodCallException When trying to modify an existing config.
* @throws \LogicException When trying to store an invalid structured config array.
public static function setConfig($key, $config = null)
throw new LogicException('If config is null, key must be an array.');
foreach ($key as $name => $settings) {
static::setConfig($name, $settings);
if (isset(static::$_config[$key])) {
throw new BadMethodCallException(sprintf('Cannot reconfigure existing key "%s"', $key));
if (is_object($config)) {
$config = ['className' => $config];
if (isset($config['url'])) {
$parsed = static::parseDsn($config['url']);
$config = $parsed + $config;
if (isset($config['engine']) && empty($config['className'])) {
$config['className'] = $config['engine'];
unset($config['engine']);
static::$_config[$key] = $config;
* Reads existing configuration.
* @param string $key The name of the configuration.
* @return mixed|null Configuration data at the named key or null if the key does not exist.
public static function getConfig($key)
return isset(static::$_config[$key]) ? static::$_config[$key] : null;
* This method can be used to define configuration adapters for an application
* or read existing configuration.
* To change an adapter's configuration at runtime, first drop the adapter and then
* Adapters will not be constructed until the first operation is done.
* Assuming that the class' name is `Cache` the following scenarios
* Reading config data back:
* Cache::config('default');
* Setting a cache engine up.
* Cache::config('default', $settings);
* Injecting a constructed adapter in:
* Cache::config('default', $instance);
* Configure multiple adapters at once:
* Cache::config($arrayOfConfig);
* @deprecated 3.4.0 Use setConfig()/getConfig() instead.
* @param string|array $key The name of the configuration, or an array of multiple configs.
* @param array|null $config An array of name => configuration data for adapter.
* @return array|null Null when adding configuration or an array of configuration data when reading.
* @throws \BadMethodCallException When trying to modify an existing config.
public static function config($key, $config = null)
get_called_class() . '::config() is deprecated. ' .
'Use setConfig()/getConfig() instead.'
if ($config !== null || is_array($key)) {
static::setConfig($key, $config);
return static::getConfig($key);
* Reads existing configuration for a specific key.
* The config value for this key must exist, it can never be null.
* @param string|null $key The name of the configuration.
* @return mixed Configuration data at the named key.
* @throws \InvalidArgumentException If value does not exist.
public static function getConfigOrFail($key)
throw new InvalidArgumentException('$key must not be null.');
if (!isset(static::$_config[$key])) {
throw new InvalidArgumentException(sprintf('Expected configuration `%s` not found.', $key));
return static::$_config[$key];
* Drops a constructed adapter.
* If you wish to modify an existing configuration, you should drop it,
* change configuration and then re-add it.
* If the implementing objects supports a `$_registry` object the named configuration
* will also be unloaded from the registry.
* @param string $config An existing configuration you wish to remove.
* @return bool Success of the removal, returns false when the config does not exist.
public static function drop($config)
if (!isset(static::$_config[$config])) {
if (isset(static::$_registry)) {
static::$_registry->unload($config);
unset(static::$_config[$config]);
* Returns an array containing the named configurations
* @return string[] Array of configurations.
public static function configured()
return array_keys(static::$_config);
* Parses a DSN into a valid connection configuration
* This method allows setting a DSN using formatting similar to that used by PEAR::DB.
* The following is an example of its usage:
* $dsn = 'mysql://user:pass@localhost/database?';
* $config = ConnectionManager::parseDsn($dsn);
* $dsn = 'Cake\Log\Engine\FileLog://?types=notice,info,debug&file=debug&path=LOGS';
* $config = Log::parseDsn($dsn);
* $dsn = 'smtp://user:secret@localhost:25?timeout=30&client=null&tls=null';
* $config = Email::parseDsn($dsn);
* $dsn = 'file:///?className=\My\Cache\Engine\FileEngine';
* $config = Cache::parseDsn($dsn);
* $dsn = 'File://?prefix=myapp_cake_core_&serialize=true&duration=+2 minutes&path=/tmp/persistent/';
* $config = Cache::parseDsn($dsn);
* For all classes, the value of `scheme` is set as the value of both the `className`
* unless they have been otherwise specified.
* Note that querystring arguments are also parsed and set as values in the returned configuration.
* @param string $dsn The DSN string to convert to a configuration array
* @return array The configuration array to be stored after parsing the DSN
* @throws \InvalidArgumentException If not passed a string, or passed an invalid string
public static function parseDsn($dsn)
throw new InvalidArgumentException('Only strings can be passed to parseDsn');
preg_match($pattern, $dsn, $parsed);
throw new InvalidArgumentException("The DSN string '{$dsn}' could not be parsed.");
foreach ($parsed as $k => $v) {
} elseif (strpos($k, '_') === 0) {
$exists[substr($k, 1)] = ($v !== '');
} elseif ($v === '' && !$exists[$k]) {
if (isset($parsed['query'])) {
$query = $parsed['query'];
parse_str($query, $queryArgs);
foreach ($queryArgs as $key => $value) {
} elseif ($value === 'false') {
$queryArgs[$key] = false;
} elseif ($value === 'null') {
$parsed = $queryArgs + $parsed;
if (empty($parsed['className'])) {
$classMap = static::getDsnClassMap();
$parsed['className'] = $parsed['scheme'];
if (isset($classMap[$parsed['scheme']])) {
$parsed['className'] = $classMap[$parsed['scheme']];
* Updates the DSN class map for this class.
* @param string[] $map Additions/edits to the class map to apply.
public static function setDsnClassMap(array $map)
static::$_dsnClassMap = $map + static::$_dsnClassMap;
* Returns the DSN class map for this class.
public static function getDsnClassMap()
return static::$_dsnClassMap;
* Returns or updates the DSN class map for this class.
* @deprecated 3.4.0 Use setDsnClassMap()/getDsnClassMap() instead.
* @param string[]|null $map Additions/edits to the class map to apply.
public static function dsnClassMap(array $map = null)
get_called_class() . '::setDsnClassMap() is deprecated. ' .
'Use setDsnClassMap()/getDsnClassMap() instead.'
static::setDsnClassMap($map);
return static::getDsnClassMap();