Skip to content

Commit

Permalink
Merge pull request #34 from kschroeder/develop
Browse files Browse the repository at this point in the history
Added a return type for the manager interface getConfiguration()
  • Loading branch information
kschroeder authored Feb 21, 2017
2 parents 15d8961 + d733dac commit a6220b6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/Manager/ManagerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@

use Magium\Configuration\Config\BuilderInterface;
use Magium\Configuration\Config\Config;
use Magium\Configuration\Config\ConfigInterface;
use Zend\Cache\Storage\StorageInterface;

interface ManagerInterface
{

/**
* @param string $context
* @return ConfigInterface
*/

public function getConfiguration($context = Config::CONTEXT_DEFAULT);

public function setLocalCache(StorageInterface $storage = null);
Expand Down

0 comments on commit a6220b6

Please sign in to comment.