Skip to content

Commit

Permalink
Merge pull request #21 from blinktag/bug/zend_config_yaml
Browse files Browse the repository at this point in the history
Zend_Config_Yaml now handles multiple subkeys
  • Loading branch information
Shardj authored Oct 4, 2019
2 parents c50baa0 + 25ab01b commit 4d9d7ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/Zend/Config/Yaml.php
Original file line number Diff line number Diff line change
Expand Up @@ -282,9 +282,10 @@ public static function decode($yaml)
*
* @param int $currentIndent Current indent level
* @param array $lines YAML lines
* @param int $pointer The current line being parsed
* @return array|string
*/
protected static function _decodeYaml($currentIndent, &$lines, &$pointer = -1)
protected static function _decodeYaml($currentIndent, $lines, &$pointer = -1)
{
$config = array();
$inIndent = false;
Expand Down

0 comments on commit 4d9d7ed

Please sign in to comment.