瀏覽代碼

Fix wrong usage of single-quotes for a string expecting interpolation.

Daniele Alessandri 14 年之前
父節點
當前提交
39ed8e3e8f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/Predis/Options/ClientCluster.php

+ 1 - 1
lib/Predis/Options/ClientCluster.php

@@ -65,7 +65,7 @@ class ClientCluster extends Option
             default:
                 // TODO: we should not even allow non-string values here.
                 if (is_string($fqnOrType) && !class_exists($fqnOrType)) {
-                    throw new \InvalidArgumentException('Class $fqnOrType does not exist');
+                    throw new \InvalidArgumentException("Class $fqnOrType does not exist");
                 }
                 return function() use($fqnOrType) {
                     return new $fqnOrType();