Skip to content

Commit

Permalink
Fixing CS errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Jan 14, 2015
1 parent 59febdf commit 0d511f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/ORM/EagerLoader.php
Expand Up @@ -383,10 +383,10 @@ protected function _normalizeContain(Table $parent, $alias, $options, $paths)
}

foreach ($extra as $t => $assoc) {
$eagerLoadable->addAssociation(
$t,
$this->_normalizeContain($table, $t, $assoc, $paths)
);
$eagerLoadable->addAssociation(
$t,
$this->_normalizeContain($table, $t, $assoc, $paths)
);
}

return $eagerLoadable;
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/ORM/QueryRegressionTest.php
Expand Up @@ -688,7 +688,7 @@ public function testFindMatchingOverwrite2()

$result = $comments
->find()
->matching('Articles.Tags', function($q) {
->matching('Articles.Tags', function ($q) {
return $q->where(['Tags.id' => 2]);
})
->contain('Articles.Authors')
Expand Down

0 comments on commit 0d511f2

Please sign in to comment.