Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/#6628-add-missing-java-properties-config-reader-…
Browse files Browse the repository at this point in the history
…plugin' into develop

Close #6628
Forward port #6628
  • Loading branch information
Ocramius committed Dec 8, 2014
2 parents 237473c + 252154b commit b0f7a18
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions library/Zend/Config/Factory.php
Expand Up @@ -34,10 +34,11 @@ class Factory
* @var array
*/
protected static $extensions = array(
'ini' => 'ini',
'json' => 'json',
'xml' => 'xml',
'yaml' => 'yaml',
'ini' => 'ini',
'json' => 'json',
'xml' => 'xml',
'yaml' => 'yaml',
'properties' => 'javaproperties',
);

/**
Expand Down
9 changes: 5 additions & 4 deletions library/Zend/Config/ReaderPluginManager.php
Expand Up @@ -19,10 +19,11 @@ class ReaderPluginManager extends AbstractPluginManager
* @var array
*/
protected $invokableClasses = array(
'ini' => 'Zend\Config\Reader\Ini',
'json' => 'Zend\Config\Reader\Json',
'xml' => 'Zend\Config\Reader\Xml',
'yaml' => 'Zend\Config\Reader\Yaml',
'ini' => 'Zend\Config\Reader\Ini',
'json' => 'Zend\Config\Reader\Json',
'xml' => 'Zend\Config\Reader\Xml',
'yaml' => 'Zend\Config\Reader\Yaml',
'javaproperties' => 'Zend\Config\Reader\JavaProperties',
);

/**
Expand Down

0 comments on commit b0f7a18

Please sign in to comment.