Browse Source

Fixing CS errors

Jose Lorenzo Rodriguez 11 years ago
parent
commit
ef490bbd70

+ 2 - 1
src/Database/Statement/BufferResultsTrait.php

@@ -19,7 +19,8 @@ namespace Cake\Database\Statement;
  *
  *
  * @internal
  * @internal
  */
  */
-trait BufferResultsTrait {
+trait BufferResultsTrait
+{
 
 
     /**
     /**
      * Whether or not to buffer results in php
      * Whether or not to buffer results in php

+ 0 - 1
src/Database/Statement/MysqlStatement.php

@@ -37,5 +37,4 @@ class MysqlStatement extends PDOStatement
         $this->_driver->connection()->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, true);
         $this->_driver->connection()->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, true);
         return $result;
         return $result;
     }
     }
-
 }
 }

+ 0 - 1
src/Database/Statement/SqliteStatement.php

@@ -57,5 +57,4 @@ class SqliteStatement extends StatementDecorator
         }
         }
         return parent::rowCount();
         return parent::rowCount();
     }
     }
-
 }
 }