Browse Source

Removed a spurious space character.

Daniele Alessandri 15 years ago
parent
commit
a2617af24a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

@@ -8,7 +8,7 @@ class ServerException extends PredisException { }                   // Server-si
 class CommunicationException extends PredisException {              // Communication errors
 class CommunicationException extends PredisException {              // Communication errors
     private $_connection;
     private $_connection;
 
 
-    public function __construct(Connection $connection, $message = null,  $code = null) {
+    public function __construct(Connection $connection, $message = null, $code = null) {
         $this->_connection = $connection;
         $this->_connection = $connection;
         parent::__construct($message, $code);
         parent::__construct($message, $code);
     }
     }