Thanks to visit codestin.com
Credit goes to github.com

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

Commit f2f20f3

Browse files
committed
Merge branch 'master' of git://github.com/zendframework/zf2 into cache_filesystem

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Options.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@
3434
abstract class Options implements ParameterObject
3535
{
3636
/**
37-
* @param array|Traversable|null $config
37+
* @param array|Traversable|null $options
3838
* @return Options
3939
* @throws Exception\InvalidArgumentException
4040
*/
41-
public function __construct($config = null)
41+
public function __construct($options = null)
4242
{
43-
if (is_null($config)) {
43+
if (is_null($options)) {
4444
return;
4545
}
46-
$this->processArray($config);
46+
$this->processArray($options);
4747
}
4848

4949
/**

0 commit comments

Comments
 (0)