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

Commit

Permalink
Merge branch 'hotfix/option-parameter-names' of https://github.com/Ev…
Browse files Browse the repository at this point in the history
…anDotPro/zf2 into hotfix/options-parameter-names
  • Loading branch information
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Options.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@
abstract class Options implements ParameterObject
{
/**
* @param array|Traversable|null $config
* @param array|Traversable|null $options
* @return Options
* @throws Exception\InvalidArgumentException
*/
public function __construct($config = null)
public function __construct($options = null)
{
if (is_null($config)) {
if (is_null($options)) {
return;
}
$this->processArray($config);
$this->processArray($options);
}

/**
Expand Down

0 comments on commit a50e133

Please sign in to comment.