Browse Source

Simple naming change.

Daniele Alessandri 14 years ago
parent
commit
7644d7fbeb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/Predis.php

+ 2 - 2
lib/Predis.php

@@ -1346,7 +1346,7 @@ class ConnectionParameters {
     const DEFAULT_PORT = 6379;
     const DEFAULT_TIMEOUT = 5;
 
-    private static $_standardParameters = array(
+    private static $_defaultParameters = array(
         'scheme' => self::DEFAULT_SCHEME,
         'host' => self::DEFAULT_HOST,
         'port' => self::DEFAULT_PORT,
@@ -1392,7 +1392,7 @@ class ConnectionParameters {
     }
 
     private static function filterConnectionParams($parameters) {
-        return array_merge(self::$_standardParameters, $parameters);
+        return array_merge(self::$_defaultParameters, $parameters);
     }
 
     public function __get($parameter) {