Browse Source

Merge branch '3.0-matching-fixes' of github.com:cakephp/cakephp into 3.0-matching-fixes

Jose Lorenzo Rodriguez 11 years ago
parent
commit
59febdfc80
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/ORM/QueryRegressionTest.php

+ 1 - 1
tests/TestCase/ORM/QueryRegressionTest.php

@@ -658,7 +658,7 @@ class QueryRegressionTest extends TestCase
 
         $result = $comments
             ->find()
-            ->matching('Articles.Tags', function($q) {
+            ->matching('Articles.Tags', function ($q) {
                 return $q->where(['Tags.id' => 2]);
             })
             ->contain('Articles')