瀏覽代碼

Gah. Fix broken lambda tests.

This is what I get for blindly following code sniff recommendations.
Justin Hileman 11 年之前
父節點
當前提交
b3e3e0a27a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      test/Mustache/Test/FiveThree/Functional/MustacheSpecTest.php

+ 1 - 1
test/Mustache/Test/FiveThree/Functional/MustacheSpecTest.php

@@ -62,7 +62,7 @@ class Mustache_Test_FiveThree_Functional_MustacheSpecTest extends PHPUnit_Framew
                 }
 
                 $func = $val['php'];
-                $data[$key] = function() use ($func) {
+                $data[$key] = function($text = null) use ($func) {
                     return eval($func);
                 };
             } elseif (is_array($val)) {