mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-04 14:07:25 +02:00
cs fix
This commit is contained in:
@@ -13,10 +13,11 @@ class ArrayConfig extends AbstractConfig implements Parameters
|
||||
* Get parameter
|
||||
*
|
||||
* @param string|int $key
|
||||
*
|
||||
* @param null $default
|
||||
* @return mixed
|
||||
*/
|
||||
public function get($key, $default = null) {
|
||||
public function get($key, $default = null)
|
||||
{
|
||||
if (isset($this->storage[$key])) {
|
||||
return $this->storage[$key];
|
||||
}
|
||||
@@ -27,7 +28,7 @@ class ArrayConfig extends AbstractConfig implements Parameters
|
||||
* Set parameter
|
||||
*
|
||||
* @param string|int $key
|
||||
* @param mixed $value
|
||||
* @param mixed $value
|
||||
*/
|
||||
public function set($key, $value)
|
||||
{
|
||||
|
Reference in New Issue
Block a user