Skip to content

Commit 2cdc930

Browse files
authoredOct 2, 2016
Added full PHP 5 support
1 parent f2cf065 commit 2cdc930

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/Dot.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ public function get($key = null, $default = null)
134134
* @param string $key Path
135135
* @return boolean
136136
*/
137-
public function has(string $key)
137+
public function has($key)
138138
{
139-
$keys = explode('.', $key);
139+
$keys = explode('.', (string)$key);
140140
$data = &$this->data;
141141
foreach ($keys as $key) {
142142
if (!isset($data[$key])) {

0 commit comments

Comments
 (0)