fix array type hint

This commit is contained in:
DavidBadura 2015-04-22 10:11:11 +00:00
parent ec3976e39a
commit 72b047173e
1 changed files with 2 additions and 2 deletions

View File

@ -13,9 +13,9 @@ class Config implements \IteratorAggregate, \Countable
private $config; private $config;
/** /**
* @param $config * @param array $config
*/ */
public function __construct($config) public function __construct(array $config)
{ {
$this->config = $config; $this->config = $config;
} }