Skip to content

Commit c43da5a

Browse files
committed
update some
Signed-off-by: inhere <[email protected]>
1 parent e73afc0 commit c43da5a

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

src/Obj/ConfigObject.php

+16-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class ConfigObject extends ArrayObject
2323
*
2424
* @return static
2525
*/
26-
public static function new(array $data = [])
26+
public static function new(array $data = []): self
2727
{
2828
return new static($data);
2929
}
@@ -95,6 +95,21 @@ public function getString(string $key, string $default = ''): string
9595
return $default;
9696
}
9797

98+
/**
99+
* @param string $key
100+
* @param array $default
101+
*
102+
* @return array
103+
*/
104+
public function getArray(string $key, array $default = []): array
105+
{
106+
if ($this->offsetExists($key)) {
107+
return (array)$this->offsetGet($key);
108+
}
109+
110+
return $default;
111+
}
112+
98113
/**
99114
* @return array
100115
*/

0 commit comments

Comments
 (0)