Skip to content

Commit

Permalink
s/$config/$connectionConfig in Zend\Mail\Transport\SmtpOptions::setCo…
Browse files Browse the repository at this point in the history
…nnectionConfig()
  • Loading branch information
EvanDotPro committed Jan 3, 2012
1 parent 8427ea5 commit b492630
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions library/Zend/Mail/Transport/SmtpOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,12 @@ public function getConnectionConfig()
/**
* Set connection configuration array
*
* @param array $config
* @param array $connectionConfig
* @return SmtpOptions
*/
public function setConnectionConfig(array $config)
public function setConnectionConfig(array $connectionConfig)
{
$this->connectionConfig = $config;
$this->connectionConfig = $connectionConfig;
return $this;
}

Expand Down

0 comments on commit b492630

Please sign in to comment.