Browse Source

Fixed CS error

José Lorenzo Rodríguez 11 years ago
parent
commit
c4f1794bcb
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')