Skip to content

Commit

Permalink
Fix CS errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bcrowe committed Aug 23, 2014
1 parent 036c21a commit 707c88a
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion src/Model/Behavior/TreeBehavior.php
Expand Up @@ -646,7 +646,7 @@ protected function _recoverTree($counter = 0, $parentId = null) {

$query = $this->_scope($this->_table->query())
->select($pk)
->where([$parent .' IS' => $parentId])
->where([$parent . ' IS' => $parentId])
->order($pk)
->hydrate(false)
->bufferResults(false);
Expand Down
1 change: 0 additions & 1 deletion tests/TestCase/Console/ShellTest.php
Expand Up @@ -788,7 +788,6 @@ public function testShellNaming() {
$this->assertEquals($expected, $this->Shell->TestApple->name);
}


/**
* Test reading params
*
Expand Down
1 change: 0 additions & 1 deletion tests/TestCase/Database/Type/FloatTypeTest.php
Expand Up @@ -85,7 +85,6 @@ public function testMarshal() {
$this->assertSame(2.51, $result);
}


/**
* Test that the PDO binding type is correct.
*
Expand Down
1 change: 0 additions & 1 deletion tests/TestCase/Database/Type/IntegerTypeTest.php
Expand Up @@ -85,7 +85,6 @@ public function testMarshal() {
$this->assertSame(0, $result);
}


/**
* Test that the PDO binding type is correct.
*
Expand Down
1 change: 0 additions & 1 deletion tests/TestCase/ORM/Association/HasManyTest.php
Expand Up @@ -469,7 +469,6 @@ public function testEagerLoaderMultipleKeys() {
$this->assertEquals($row, $result);
}


/**
* Test cascading deletes.
*
Expand Down

0 comments on commit 707c88a

Please sign in to comment.