fix array type hint
This commit is contained in:
parent
ec3976e39a
commit
72b047173e
|
@ -13,9 +13,9 @@ class Config implements \IteratorAggregate, \Countable
|
|||
private $config;
|
||||
|
||||
/**
|
||||
* @param $config
|
||||
* @param array $config
|
||||
*/
|
||||
public function __construct($config)
|
||||
public function __construct(array $config)
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue