Skip to content

Commit

Permalink
Fix CS errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Jan 10, 2015
1 parent 9b3ac45 commit 1c66e3d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/Database/Driver/Mysql.php
Expand Up @@ -119,5 +119,4 @@ public function prepare($query)
}
return $result;
}

}
4 changes: 2 additions & 2 deletions src/Database/Statement/MysqlStatement.php
Expand Up @@ -24,7 +24,7 @@
class MysqlStatement extends PDOStatement
{

/**
/**
* Whether or not to buffer results in php
*
* @var bool
Expand All @@ -43,7 +43,7 @@ public function execute($params = null)
return $result;
}

/**
/**
* Whether or not to buffer results in php
*
* @param bool $buffer Toggle buffering
Expand Down
3 changes: 2 additions & 1 deletion src/Database/Statement/StatementDecorator.php
Expand Up @@ -304,7 +304,8 @@ public function lastInsertId($table = null, $column = null)
*
* @return \Cake\Database\StatementInterface
*/
public function getInnerStatement() {
public function getInnerStatement()
{
return $this->_statement;
}
}
3 changes: 2 additions & 1 deletion tests/TestCase/Database/QueryTest.php
Expand Up @@ -3136,7 +3136,8 @@ public function testSqlCaseStatement()
*
* @return void
*/
public function testUnbufferedQuery() {
public function testUnbufferedQuery()
{
$query = new Query($this->connection);
$result = $query->select(['body', 'author_id'])
->from('articles')
Expand Down

0 comments on commit 1c66e3d

Please sign in to comment.