Browse Source

Merge pull request #2777 from bcrowe/3.0-docblock-spacing

3.0 - Fix docblock spacing between descriptions and params
ADmad 12 years ago
parent
commit
db36ba0153

+ 1 - 0
src/Database/Dialect/SqliteDialectTrait.php

@@ -149,6 +149,7 @@ trait SqliteDialectTrait {
  *
  * The way SQLite works with multi insert is by having multiple select statements
  * joined with UNION.
+ *
  * @param Cake\Database\Query $query The query to translate
  * @return Query
  */

+ 2 - 0
src/Database/Driver/PDODriverTrait.php

@@ -50,6 +50,7 @@ trait PDODriverTrait {
  * Returns correct connection resource or object that is internally used
  * If first argument is passed, it will set internal conenction object or
  * result to the value passed
+ *
  * @param null|PDO instance $connection
  * @return mixed connection object used internally
  */
@@ -122,6 +123,7 @@ trait PDODriverTrait {
 
 /**
  * Returns a value in a safe representation to be used in a query string
+ *
  * @param mixed $value
  * @param string $type Type to be used for determining kind of quoting to perform
  * @return string