Explorar el Código

Pass the server profile to a connection initializer callback.

Daniele Alessandri hace 13 años
padre
commit
1260c91f63
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lib/Predis/ConnectionFactory.php

+ 1 - 1
lib/Predis/ConnectionFactory.php

@@ -112,7 +112,7 @@ class ConnectionFactory implements IConnectionFactory
             return $connection;
         }
 
-        $connection = call_user_func($initializer, $parameters);
+        $connection = call_user_func($initializer, $parameters, $profile);
         if (!$connection instanceof IConnectionSingle) {
             throw new \InvalidArgumentException(
                 'Objects returned by connection initializers must implement ' .