Browse Source

Fix CS error

Walther Lalk 11 years ago
parent
commit
7fc4cfe3ae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/ORM/QueryTest.php

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

@@ -2148,7 +2148,7 @@ class QueryTest extends TestCase {
 		$table = TableRegistry::get('Articles');
 		$table->hasMany('Comments');
 		$table->eventManager()
-			->attach(function($event, $query) {
+			->attach(function ($event, $query) {
 				$query
 					->limit(5)
 					->order(['Articles.title' => 'DESC']);