Fix a few spelling mistakes

This commit is contained in:
Timothy Warren 2014-04-24 11:31:03 -04:00
parent 6708a5f548
commit 0baf624e8b
2 changed files with 4 additions and 3 deletions

View File

@ -59,7 +59,7 @@ abstract class Abstract_Util {
// --------------------------------------------------------------------------
/**
* Convienience public function to generate sql for creating a db table
* Convenience public function to generate sql for creating a db table
*
* @deprecated Use the table builder class instead
* @param string $name
@ -94,7 +94,7 @@ abstract class Abstract_Util {
}
}
// Join column definitons together
// Join column definitions together
$columns = array();
foreach($column_array as $n => $props)
{

View File

@ -34,9 +34,10 @@ class Firebird_Util extends Abstract_Util {
* @param string $name
* @param array $fields
* @param array $constraints
* @param bool $if_not_exists
* @return string
*/
public function create_table($name, $fields, array $constraints=array())
public function create_table($name, $fields, array $constraints=array(), $if_not_exists=FALSE)
{
return parent::create_table($name, $fields, $constraints, FALSE);
}