1
0
mirror of synced 2025-01-20 07:21:40 +03:00

formatting fix

This commit is contained in:
zYne 2007-06-18 18:30:19 +00:00
parent cfbcc8d4ee
commit 7249b971f0

View File

@ -199,7 +199,7 @@ class Doctrine_DataDict_Firebird extends Doctrine_DataDict
*/ */
public function getCharsetFieldDeclaration($charset) public function getCharsetFieldDeclaration($charset)
{ {
return 'CHARACTER SET '.$charset; return 'CHARACTER SET ' . $charset;
} }
/** /**
* Obtain DBMS specific SQL code portion needed to set the COLLATION * Obtain DBMS specific SQL code portion needed to set the COLLATION
@ -211,6 +211,6 @@ class Doctrine_DataDict_Firebird extends Doctrine_DataDict
*/ */
public function getCollationFieldDeclaration($collation) public function getCollationFieldDeclaration($collation)
{ {
return 'COLLATE '.$collation; return 'COLLATE ' . $collation;
} }
} }