Skip to content

Commit

Permalink
Fixing cs errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Conroy committed Mar 7, 2015
1 parent b8bc62f commit 5e93b99
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ORM/Association.php
Expand Up @@ -422,7 +422,7 @@ public function strategy($name = null)
* Checks if a given strategy is valid for the association type.
*
* @param string $name The strategy type.
* @return boolean
* @return bool
*/
public function validStrategy($name)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/ORM/Association/BelongsToManyTest.php
Expand Up @@ -144,7 +144,7 @@ public function testRequiresKeys()
} catch (\InvalidArgumentException $e) {
$errorUsingJoin = true;
}
$this->assertTrue($errorUsingJoin);
$this->assertTrue($errorUsingJoin);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/ORM/Association/HasManyTest.php
Expand Up @@ -126,7 +126,7 @@ public function testRequiresKeys()
} catch (\InvalidArgumentException $e) {
$errorUsingJoin = true;
}
$this->assertTrue($errorUsingJoin);
$this->assertTrue($errorUsingJoin);
}

/**
Expand Down

0 comments on commit 5e93b99

Please sign in to comment.