Skip to content

Commit

Permalink
Merge pull request doctrine#2 from Baachi/patch-1
Browse files Browse the repository at this point in the history
Fix syntax error in constructor
  • Loading branch information
mikelohmann committed Oct 27, 2011
2 parents 16d75e5 + 23be2fd commit e25d334
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Doctrine/Search/Solr/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ class Client implements SearchClient
*/
public function __construct(Connection $conn = null, Configuration $config = null)
{
$this->$connection = $conn;
$this->$config = $config;
$this->connection = $conn;
$this->config = $config;
}

public function find(array $query);
Expand Down

0 comments on commit e25d334

Please sign in to comment.