Commit b340bfe1 authored by pookey's avatar pookey

removing the closing PHP tags form all php files, it\'s not needed and can...

removing the closing PHP tags form all php files, it\'s not needed and can break sessions which are whitespace sensitive
parent fb2a3bfd
...@@ -97,4 +97,4 @@ abstract class Doctrine_Access implements ArrayAccess { ...@@ -97,4 +97,4 @@ abstract class Doctrine_Access implements ArrayAccess {
return $this->remove($offset); return $this->remove($offset);
} }
} }
?>
...@@ -56,4 +56,4 @@ class Doctrine_Association extends Doctrine_Relation { ...@@ -56,4 +56,4 @@ class Doctrine_Association extends Doctrine_Relation {
return $dql; return $dql;
} }
} }
?>
...@@ -68,4 +68,4 @@ class Doctrine_Cache implements iDoctrine_Cache { ...@@ -68,4 +68,4 @@ class Doctrine_Cache implements iDoctrine_Cache {
} }
} }
?>
...@@ -257,4 +257,4 @@ class Doctrine_Cache_File implements Countable { ...@@ -257,4 +257,4 @@ class Doctrine_Cache_File implements Countable {
} }
} }
?>
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
class Doctrine_Cache_Manager { class Doctrine_Cache_Manager {
} }
?>
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
class Doctrine_Cache_Memcache extends Doctrine_Cache { class Doctrine_Cache_Memcache extends Doctrine_Cache {
} }
?>
...@@ -122,4 +122,4 @@ class Doctrine_Cache_Query_Sqlite implements Countable { ...@@ -122,4 +122,4 @@ class Doctrine_Cache_Query_Sqlite implements Countable {
return $data[0]; return $data[0];
} }
} }
?>
...@@ -262,4 +262,4 @@ class Doctrine_Cache_Sqlite { ...@@ -262,4 +262,4 @@ class Doctrine_Cache_Sqlite {
$this->autoClean(); $this->autoClean();
} }
} }
?>
...@@ -679,4 +679,4 @@ class Doctrine_Collection extends Doctrine_Access implements Countable, Iterator ...@@ -679,4 +679,4 @@ class Doctrine_Collection extends Doctrine_Access implements Countable, Iterator
return Doctrine_Lib::getCollectionAsString($this); return Doctrine_Lib::getCollectionAsString($this);
} }
} }
?>
...@@ -160,4 +160,4 @@ class Doctrine_Collection_Batch extends Doctrine_Collection { ...@@ -160,4 +160,4 @@ class Doctrine_Collection_Batch extends Doctrine_Collection {
return new Doctrine_Iterator_Expandable($this); return new Doctrine_Iterator_Expandable($this);
} }
} }
?>
...@@ -16,4 +16,4 @@ class Doctrine_Collection_Immediate extends Doctrine_Collection { ...@@ -16,4 +16,4 @@ class Doctrine_Collection_Immediate extends Doctrine_Collection {
parent::__construct($table); parent::__construct($table);
} }
} }
?>
...@@ -15,4 +15,4 @@ class Doctrine_Collection_Lazy extends Doctrine_Collection_Batch { ...@@ -15,4 +15,4 @@ class Doctrine_Collection_Lazy extends Doctrine_Collection_Batch {
parent::setBatchSize(1); parent::setBatchSize(1);
} }
} }
?>
...@@ -28,4 +28,4 @@ class Doctrine_Collection_Offset extends Doctrine_Collection { ...@@ -28,4 +28,4 @@ class Doctrine_Collection_Offset extends Doctrine_Collection {
return new Doctrine_Iterator_Expandable($this); return new Doctrine_Iterator_Expandable($this);
} }
} }
?>
...@@ -192,4 +192,4 @@ abstract class Doctrine_Configurable { ...@@ -192,4 +192,4 @@ abstract class Doctrine_Configurable {
return $this->parent; return $this->parent;
} }
} }
?>
...@@ -939,4 +939,4 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun ...@@ -939,4 +939,4 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun
return Doctrine_Lib::getConnectionAsString($this); return Doctrine_Lib::getConnectionAsString($this);
} }
} }
?>
...@@ -22,4 +22,4 @@ class Doctrine_Connection_Common extends Doctrine_Connection { ...@@ -22,4 +22,4 @@ class Doctrine_Connection_Common extends Doctrine_Connection {
return $query; return $query;
} }
} }
?>
...@@ -10,4 +10,4 @@ class Doctrine_Connection_Exception extends Doctrine_Exception { ...@@ -10,4 +10,4 @@ class Doctrine_Connection_Exception extends Doctrine_Exception {
Doctrine_Manager::getInstance()->openConnection() to open a new connection.",Doctrine::ERR_NO_SESSIONS); Doctrine_Manager::getInstance()->openConnection() to open a new connection.",Doctrine::ERR_NO_SESSIONS);
} }
} }
?>
...@@ -18,4 +18,4 @@ class Doctrine_Connection_Firebird extends Doctrine_Connection { ...@@ -18,4 +18,4 @@ class Doctrine_Connection_Firebird extends Doctrine_Connection {
return $data[0]; return $data[0];
} }
} }
?>
...@@ -3,4 +3,4 @@ ...@@ -3,4 +3,4 @@
* informix database driver * informix database driver
*/ */
class Doctrine_Connection_Informix extends Doctrine_Connection { } class Doctrine_Connection_Informix extends Doctrine_Connection { }
?>
...@@ -69,4 +69,4 @@ class Doctrine_Connection_Mssql extends Doctrine_Connection { ...@@ -69,4 +69,4 @@ class Doctrine_Connection_Mssql extends Doctrine_Connection {
return $query; return $query;
} }
} }
?>
...@@ -156,4 +156,4 @@ class Doctrine_Connection_Mysql extends Doctrine_Connection_Common { ...@@ -156,4 +156,4 @@ class Doctrine_Connection_Mysql extends Doctrine_Connection_Common {
*/ */
} }
?>
...@@ -29,4 +29,4 @@ class Doctrine_Connection_Oracle extends Doctrine_Connection { ...@@ -29,4 +29,4 @@ class Doctrine_Connection_Oracle extends Doctrine_Connection {
return $data[0]; return $data[0];
} }
} }
?>
...@@ -15,4 +15,4 @@ class Doctrine_Connection_Pgsql extends Doctrine_Connection_Common { ...@@ -15,4 +15,4 @@ class Doctrine_Connection_Pgsql extends Doctrine_Connection_Common {
return $data[0]; return $data[0];
} }
} }
?>
...@@ -4,4 +4,4 @@ require_once("Common.php"); ...@@ -4,4 +4,4 @@ require_once("Common.php");
* sqlite driver * sqlite driver
*/ */
class Doctrine_Connection_Sqlite extends Doctrine_Connection_Common { } class Doctrine_Connection_Sqlite extends Doctrine_Connection_Common { }
?>
...@@ -134,4 +134,4 @@ class Doctrine_DB extends PDO implements Countable, IteratorAggregate { ...@@ -134,4 +134,4 @@ class Doctrine_DB extends PDO implements Countable, IteratorAggregate {
} }
} }
?>
...@@ -46,4 +46,4 @@ class Doctrine_DBStatement extends PDOStatement { ...@@ -46,4 +46,4 @@ class Doctrine_DBStatement extends PDOStatement {
return $result; return $result;
} }
} }
?>
...@@ -134,4 +134,4 @@ class Doctrine_DataDict_Sqlite { ...@@ -134,4 +134,4 @@ class Doctrine_DataDict_Sqlite {
} }
} }
?>
...@@ -64,4 +64,4 @@ abstract class Doctrine_EventListener implements Doctrine_EventListener_Interfac ...@@ -64,4 +64,4 @@ abstract class Doctrine_EventListener implements Doctrine_EventListener_Interfac
} }
?>
...@@ -51,4 +51,4 @@ class Doctrine_EvenListener_Chain extends Doctrine_Access { ...@@ -51,4 +51,4 @@ class Doctrine_EvenListener_Chain extends Doctrine_Access {
} }
} }
} }
?>
...@@ -149,4 +149,4 @@ class Doctrine_EventListener_Debugger extends Doctrine_EventListener { ...@@ -149,4 +149,4 @@ class Doctrine_EventListener_Debugger extends Doctrine_EventListener {
$this->debug[] = new Doctrine_DebugMessage($collection,self::EVENT_PRECOLLDELETE); $this->debug[] = new Doctrine_DebugMessage($collection,self::EVENT_PRECOLLDELETE);
} }
} }
?>
...@@ -3,4 +3,4 @@ ...@@ -3,4 +3,4 @@
* an emtpy listener all components use this by default * an emtpy listener all components use this by default
*/ */
class Doctrine_EventListener_Empty extends Doctrine_EventListener { } class Doctrine_EventListener_Empty extends Doctrine_EventListener { }
?>
...@@ -3,4 +3,4 @@ class InvalidKeyException extends Exception { } ...@@ -3,4 +3,4 @@ class InvalidKeyException extends Exception { }
class InvalidTypeException extends Exception { } class InvalidTypeException extends Exception { }
class Doctrine_Exception extends Exception { } class Doctrine_Exception extends Exception { }
class DQLException extends Doctrine_Exception { } class DQLException extends Doctrine_Exception { }
?>
...@@ -8,4 +8,4 @@ class Doctrine_Find_Exception extends Doctrine_Exception { ...@@ -8,4 +8,4 @@ class Doctrine_Find_Exception extends Doctrine_Exception {
parent::__construct("Couldn't find Data Access Object.",Doctrine::ERR_FIND); parent::__construct("Couldn't find Data Access Object.",Doctrine::ERR_FIND);
} }
} }
?>
...@@ -8,4 +8,4 @@ class Doctrine_Mapping_Exception extends Doctrine_Exception { ...@@ -8,4 +8,4 @@ class Doctrine_Mapping_Exception extends Doctrine_Exception {
parent::__construct($message,Doctrine::ERR_MAPPING); parent::__construct($message,Doctrine::ERR_MAPPING);
} }
} }
?>
...@@ -9,4 +9,4 @@ class Doctrine_Naming_Exception extends Doctrine_Exception { ...@@ -9,4 +9,4 @@ class Doctrine_Naming_Exception extends Doctrine_Exception {
must be in format [Name]Table.", Doctrine::ERR_NAMING); must be in format [Name]Table.", Doctrine::ERR_NAMING);
} }
} }
?>
...@@ -8,4 +8,4 @@ class Doctrine_PrimaryKey_Exception extends Doctrine_Exception { ...@@ -8,4 +8,4 @@ class Doctrine_PrimaryKey_Exception extends Doctrine_Exception {
parent::__construct("No primary key column found. Each data set must have primary key column.", Doctrine::ERR_NO_PK); parent::__construct("No primary key column found. Each data set must have primary key column.", Doctrine::ERR_NO_PK);
} }
} }
?>
...@@ -11,4 +11,4 @@ class Doctrine_Filter { ...@@ -11,4 +11,4 @@ class Doctrine_Filter {
return $this->name; return $this->name;
} }
} }
?>
...@@ -3,4 +3,4 @@ ...@@ -3,4 +3,4 @@
* Foreign Key * Foreign Key
*/ */
class Doctrine_ForeignKey extends Doctrine_Relation { } class Doctrine_ForeignKey extends Doctrine_Relation { }
?>
...@@ -77,4 +77,4 @@ class Doctrine_Form implements Iterator { ...@@ -77,4 +77,4 @@ class Doctrine_Form implements Iterator {
return true; return true;
} }
} }
?>
...@@ -541,4 +541,4 @@ abstract class Doctrine_Hydrate extends Doctrine_Access { ...@@ -541,4 +541,4 @@ abstract class Doctrine_Hydrate extends Doctrine_Access {
return $this->tables[$name]; return $this->tables[$name];
} }
} }
?>
...@@ -17,4 +17,4 @@ class Doctrine_Identifier { ...@@ -17,4 +17,4 @@ class Doctrine_Identifier {
*/ */
const COMPOSITE = 4; const COMPOSITE = 4;
} }
?>
...@@ -87,4 +87,4 @@ class Doctrine_Import ...@@ -87,4 +87,4 @@ class Doctrine_Import
} // end of Doctrine_Import } // end of Doctrine_Import
?>
...@@ -57,4 +57,4 @@ abstract class Doctrine_Import_Builder ...@@ -57,4 +57,4 @@ abstract class Doctrine_Import_Builder
} // end of Doctrine_Import_Builder } // end of Doctrine_Import_Builder
?>
...@@ -47,4 +47,4 @@ class Doctrine_Import_Builder_Exception ...@@ -47,4 +47,4 @@ class Doctrine_Import_Builder_Exception
} // end of Doctrine_Import_Builder_Exception } // end of Doctrine_Import_Builder_Exception
?>
...@@ -57,4 +57,4 @@ abstract class Doctrine_Import_Reader ...@@ -57,4 +57,4 @@ abstract class Doctrine_Import_Reader
} // end of Doctrine_Import_Reader } // end of Doctrine_Import_Reader
?>
...@@ -72,4 +72,4 @@ class Doctrine_Import_Reader_Db extends Doctrine_Import_Reader ...@@ -72,4 +72,4 @@ class Doctrine_Import_Reader_Db extends Doctrine_Import_Reader
} // end of Doctrine_Import_Reader_Db } // end of Doctrine_Import_Reader_Db
?>
...@@ -47,4 +47,4 @@ class Doctrine_Import_Reader_Exception ...@@ -47,4 +47,4 @@ class Doctrine_Import_Reader_Exception
} // end of Doctrine_Import_Reader_Exception } // end of Doctrine_Import_Reader_Exception
?>
...@@ -61,4 +61,4 @@ class Doctrine_Import_Reader_Xml_Propel extends Doctrine_Import_Reader ...@@ -61,4 +61,4 @@ class Doctrine_Import_Reader_Xml_Propel extends Doctrine_Import_Reader
} // end of Doctrine_Import_Reader_Xml_Propel } // end of Doctrine_Import_Reader_Xml_Propel
?>
...@@ -22,4 +22,4 @@ class Doctrine_IndexGenerator { ...@@ -22,4 +22,4 @@ class Doctrine_IndexGenerator {
return $value; return $value;
} }
} }
?>
...@@ -99,4 +99,4 @@ abstract class Doctrine_Iterator implements Iterator { ...@@ -99,4 +99,4 @@ abstract class Doctrine_Iterator implements Iterator {
} }
?>
...@@ -22,4 +22,4 @@ class Doctrine_Iterator_Expandable extends Doctrine_Iterator { ...@@ -22,4 +22,4 @@ class Doctrine_Iterator_Expandable extends Doctrine_Iterator {
} }
} }
} }
?>
...@@ -28,4 +28,4 @@ class Doctrine_Iterator_Normal extends Doctrine_Iterator { ...@@ -28,4 +28,4 @@ class Doctrine_Iterator_Normal extends Doctrine_Iterator {
return ($this->index < $this->count); return ($this->index < $this->count);
} }
} }
?>
...@@ -5,4 +5,4 @@ class Doctrine_Iterator_Offset extends Doctrine_Iterator { ...@@ -5,4 +5,4 @@ class Doctrine_Iterator_Offset extends Doctrine_Iterator {
public function valid() { } public function valid() { }
} }
?>
...@@ -187,4 +187,4 @@ class Doctrine_Lib { ...@@ -187,4 +187,4 @@ class Doctrine_Lib {
return implode("\n",$r); return implode("\n",$r);
} }
} }
?>
...@@ -8,4 +8,3 @@ ...@@ -8,4 +8,3 @@
*/ */
class Doctrine_Locking_Exception extends Doctrine_Exception {} class Doctrine_Locking_Exception extends Doctrine_Exception {}
?>
\ No newline at end of file
...@@ -239,4 +239,4 @@ class Doctrine_Locking_Manager_Pessimistic ...@@ -239,4 +239,4 @@ class Doctrine_Locking_Manager_Pessimistic
} }
?>
...@@ -294,4 +294,4 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera ...@@ -294,4 +294,4 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera
return implode("\n",$r); return implode("\n",$r);
} }
} }
?>
...@@ -57,4 +57,4 @@ class Doctrine_Module implements IteratorAggregate, Countable { ...@@ -57,4 +57,4 @@ class Doctrine_Module implements IteratorAggregate, Countable {
return count($this->components); return count($this->components);
} }
} }
?>
...@@ -6,4 +6,4 @@ ...@@ -6,4 +6,4 @@
* used for extra fast null value testing with isset() rather than array_key_exists() * used for extra fast null value testing with isset() rather than array_key_exists()
*/ */
class Doctrine_Null { } class Doctrine_Null { }
?>
...@@ -812,4 +812,4 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable { ...@@ -812,4 +812,4 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
} }
} }
} }
?>
...@@ -42,4 +42,4 @@ abstract class Doctrine_Query_Condition extends Doctrine_Query_Part { ...@@ -42,4 +42,4 @@ abstract class Doctrine_Query_Condition extends Doctrine_Query_Part {
return "(".$r.")"; return "(".$r.")";
} }
} }
?>
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
require_once(Doctrine::getPath().DIRECTORY_SEPARATOR."Doctrine".DIRECTORY_SEPARATOR."Exception.php"); require_once(Doctrine::getPath().DIRECTORY_SEPARATOR."Doctrine".DIRECTORY_SEPARATOR."Exception.php");
class Doctrine_Query_Exception extends Doctrine_Exception { } class Doctrine_Query_Exception extends Doctrine_Exception { }
?>
...@@ -23,4 +23,4 @@ class Doctrine_Query_From extends Doctrine_Query_Part { ...@@ -23,4 +23,4 @@ class Doctrine_Query_From extends Doctrine_Query_Part {
return ( ! empty($this->parts))?implode(", ", $this->parts):''; return ( ! empty($this->parts))?implode(", ", $this->parts):'';
} }
} }
?>
...@@ -27,4 +27,4 @@ class Doctrine_Query_Groupby extends Doctrine_Query_Part { ...@@ -27,4 +27,4 @@ class Doctrine_Query_Groupby extends Doctrine_Query_Part {
return ( ! empty($this->parts))?implode(", ", $this->parts):''; return ( ! empty($this->parts))?implode(", ", $this->parts):'';
} }
} }
?>
...@@ -71,4 +71,4 @@ class Doctrine_Query_Having extends Doctrine_Query_Condition { ...@@ -71,4 +71,4 @@ class Doctrine_Query_Having extends Doctrine_Query_Condition {
return ( ! empty($this->parts))?implode(" AND ", $this->parts):''; return ( ! empty($this->parts))?implode(" AND ", $this->parts):'';
} }
} }
?>
...@@ -38,4 +38,4 @@ class Doctrine_Query_Orderby extends Doctrine_Query_Part { ...@@ -38,4 +38,4 @@ class Doctrine_Query_Orderby extends Doctrine_Query_Part {
return ( ! empty($this->parts))?implode(", ", $this->parts):''; return ( ! empty($this->parts))?implode(", ", $this->parts):'';
} }
} }
?>
...@@ -37,4 +37,4 @@ abstract class Doctrine_Query_Part extends Doctrine_Access { ...@@ -37,4 +37,4 @@ abstract class Doctrine_Query_Part extends Doctrine_Access {
} }
?>
...@@ -39,4 +39,4 @@ class Doctrine_Query_Where extends Doctrine_Query_Condition { ...@@ -39,4 +39,4 @@ class Doctrine_Query_Where extends Doctrine_Query_Condition {
return ( ! empty($this->parts))?implode(" AND ", $this->parts):''; return ( ! empty($this->parts))?implode(" AND ", $this->parts):'';
} }
} }
?>
...@@ -225,4 +225,4 @@ class Doctrine_RawSql extends Doctrine_Hydrate { ...@@ -225,4 +225,4 @@ class Doctrine_RawSql extends Doctrine_Hydrate {
} }
} }
?>
...@@ -1326,4 +1326,4 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite ...@@ -1326,4 +1326,4 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite
return Doctrine_Lib::getRecordAsString($this); return Doctrine_Lib::getRecordAsString($this);
} }
} }
?>
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
Doctrine::autoload('Doctrine_Exception'); Doctrine::autoload('Doctrine_Exception');
class Doctrine_Record_Exception extends Doctrine_Exception { } class Doctrine_Record_Exception extends Doctrine_Exception { }
?>
...@@ -39,4 +39,4 @@ class Doctrine_Record_Iterator extends ArrayIterator { ...@@ -39,4 +39,4 @@ class Doctrine_Record_Iterator extends ArrayIterator {
return $value; return $value;
} }
} }
?>
...@@ -220,4 +220,4 @@ class Doctrine_Relation { ...@@ -220,4 +220,4 @@ class Doctrine_Relation {
} }
} }
?>
...@@ -111,4 +111,4 @@ class Doctrine_Repository implements Countable, IteratorAggregate { ...@@ -111,4 +111,4 @@ class Doctrine_Repository implements Countable, IteratorAggregate {
$this->table->findAll(); $this->table->findAll();
} }
} }
?>
...@@ -131,4 +131,4 @@ class Doctrine_Schema_Column extends Doctrine_Schema_Object ...@@ -131,4 +131,4 @@ class Doctrine_Schema_Column extends Doctrine_Schema_Object
} // end of Doctrine_Schema_Column } // end of Doctrine_Schema_Column
?>
...@@ -47,4 +47,4 @@ class Doctrine_Schema_Exception extends Exception ...@@ -47,4 +47,4 @@ class Doctrine_Schema_Exception extends Exception
} // end of Doctrine_Schema_Exception } // end of Doctrine_Schema_Exception
?>
...@@ -122,4 +122,4 @@ class Doctrine_Schema_Relation extends Doctrine_Schema_Object ...@@ -122,4 +122,4 @@ class Doctrine_Schema_Relation extends Doctrine_Schema_Object
} // end of Doctrine_Schema_Relation } // end of Doctrine_Schema_Relation
?>
...@@ -940,4 +940,4 @@ abstract class Doctrine_Session extends Doctrine_Configurable implements Countab ...@@ -940,4 +940,4 @@ abstract class Doctrine_Session extends Doctrine_Configurable implements Countab
return Doctrine_Lib::getSessionAsString($this); return Doctrine_Lib::getSessionAsString($this);
} }
} }
?>
...@@ -184,4 +184,4 @@ class Doctrine_Statement extends Doctrine_Access { ...@@ -184,4 +184,4 @@ class Doctrine_Statement extends Doctrine_Access {
return $array; return $array;
} }
} }
?>
...@@ -1001,4 +1001,4 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable { ...@@ -1001,4 +1001,4 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable {
return Doctrine_Lib::getTableAsString($this); return Doctrine_Lib::getTableAsString($this);
} }
} }
?>
...@@ -11,4 +11,4 @@ class Doctrine_Table_Exception extends Doctrine_Exception { ...@@ -11,4 +11,4 @@ class Doctrine_Table_Exception extends Doctrine_Exception {
to get on instance of a Doctrine_Table.",Doctrine::ERR_TABLE_INSTANCE); to get on instance of a Doctrine_Table.",Doctrine::ERR_TABLE_INSTANCE);
} }
} }
?>
...@@ -40,4 +40,4 @@ abstract class Doctrine_Tree extends Doctrine_Record { ...@@ -40,4 +40,4 @@ abstract class Doctrine_Tree extends Doctrine_Record {
abstract public function addNode(); abstract public function addNode();
} }
?>
...@@ -50,4 +50,4 @@ class Doctrine_Tree_NestedSet extends Doctrine_Record { ...@@ -50,4 +50,4 @@ class Doctrine_Tree_NestedSet extends Doctrine_Record {
public function addNode() { } public function addNode() { }
} }
?>
...@@ -41,4 +41,4 @@ class Doctrine_Tree_PathModel extends Doctrine_Record { ...@@ -41,4 +41,4 @@ class Doctrine_Tree_PathModel extends Doctrine_Record {
public function addNode() { } public function addNode() { }
} }
?>
...@@ -275,4 +275,4 @@ class Doctrine_Validator { ...@@ -275,4 +275,4 @@ class Doctrine_Validator {
endswitch; endswitch;
} }
} }
?>
...@@ -262,4 +262,4 @@ class Doctrine_Validator_Country { ...@@ -262,4 +262,4 @@ class Doctrine_Validator_Country {
} }
} }
?>
...@@ -18,4 +18,4 @@ class Doctrine_Validator_Date { ...@@ -18,4 +18,4 @@ class Doctrine_Validator_Date {
return checkdate($e[1], $e[0], $e[2]); return checkdate($e[1], $e[0], $e[2]);
} }
} }
?>
...@@ -55,4 +55,4 @@ class Doctrine_Validator_Email { ...@@ -55,4 +55,4 @@ class Doctrine_Validator_Email {
return true; return true;
} }
} }
?>
...@@ -20,4 +20,4 @@ class Doctrine_Validator_Enum { ...@@ -20,4 +20,4 @@ class Doctrine_Validator_Enum {
return true; return true;
} }
} }
?>
...@@ -30,4 +30,4 @@ class Doctrine_Validator_Exception extends Doctrine_Exception { ...@@ -30,4 +30,4 @@ class Doctrine_Validator_Exception extends Doctrine_Exception {
return $string.parent::__toString(); return $string.parent::__toString();
} }
} }
?>
...@@ -14,4 +14,4 @@ class Doctrine_Validator_HtmlColor { ...@@ -14,4 +14,4 @@ class Doctrine_Validator_HtmlColor {
return true; return true;
} }
} }
?>
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
interface Doctrine_Validator_Interface { interface Doctrine_Validator_Interface {
public function validate(); public function validate();
} }
?>
...@@ -11,4 +11,4 @@ class Doctrine_Validator_Ip { ...@@ -11,4 +11,4 @@ class Doctrine_Validator_Ip {
return (bool) ip2long(str_replace("\0", '', $value)); return (bool) ip2long(str_replace("\0", '', $value));
} }
} }
?>
...@@ -14,4 +14,4 @@ class Doctrine_Validator_NoSpace { ...@@ -14,4 +14,4 @@ class Doctrine_Validator_NoSpace {
return true; return true;
} }
} }
?>
...@@ -11,4 +11,4 @@ class Doctrine_Validator_Notblank { ...@@ -11,4 +11,4 @@ class Doctrine_Validator_Notblank {
return (trim($value) != ""); return (trim($value) != "");
} }
} }
?>
...@@ -13,4 +13,4 @@ class Doctrine_Validator_Notnull { ...@@ -13,4 +13,4 @@ class Doctrine_Validator_Notnull {
return true; return true;
} }
} }
?>
...@@ -18,4 +18,4 @@ class Doctrine_Validator_Range { ...@@ -18,4 +18,4 @@ class Doctrine_Validator_Range {
return true; return true;
} }
} }
?>
...@@ -14,4 +14,4 @@ class Doctrine_Validator_Regexp { ...@@ -14,4 +14,4 @@ class Doctrine_Validator_Regexp {
return false; return false;
} }
} }
?>
...@@ -10,4 +10,4 @@ class Doctrine_Validator_Required { ...@@ -10,4 +10,4 @@ class Doctrine_Validator_Required {
return ($value === null); return ($value === null);
} }
} }
?>
...@@ -15,4 +15,4 @@ class Doctrine_Validator_Unique { ...@@ -15,4 +15,4 @@ class Doctrine_Validator_Unique {
return ( ! is_array($stmt->fetch())); return ( ! is_array($stmt->fetch()));
} }
} }
?>
...@@ -69,4 +69,4 @@ class ValidatorUSState { ...@@ -69,4 +69,4 @@ class ValidatorUSState {
return isset(self::$states[$value]); return isset(self::$states[$value]);
} }
} }
?>
...@@ -61,4 +61,4 @@ class Doctrine_ValueHolder extends Doctrine_Access implements Countable { ...@@ -61,4 +61,4 @@ class Doctrine_ValueHolder extends Doctrine_Access implements Countable {
throw new Doctrine_Exception("Method 'save' not availible on Doctrine_ValueHolder."); throw new Doctrine_Exception("Method 'save' not availible on Doctrine_ValueHolder.");
} }
} }
?>
...@@ -108,4 +108,4 @@ class Doctrine_View { ...@@ -108,4 +108,4 @@ class Doctrine_View {
return sprintf(self::SELECT, $this->name); return sprintf(self::SELECT, $this->name);
} }
} }
?>
<?php <?php
class Doctrine_View_Exception extends Doctrine_Exception { } class Doctrine_View_Exception extends Doctrine_Exception { }
?>
...@@ -1070,4 +1070,4 @@ class ADODB_DataDict { ...@@ -1070,4 +1070,4 @@ class ADODB_DataDict {
} }
} }
?>
...@@ -47,4 +47,4 @@ class ADOFieldObject { ...@@ -47,4 +47,4 @@ class ADOFieldObject {
var $type=""; var $type="";
} }
?>
...@@ -92,4 +92,3 @@ class ADODB2_access extends ADODB_DataDict { ...@@ -92,4 +92,3 @@ class ADODB2_access extends ADODB_DataDict {
} }
?>
\ No newline at end of file
...@@ -140,4 +140,3 @@ class ADODB2_db2 extends ADODB_DataDict { ...@@ -140,4 +140,3 @@ class ADODB2_db2 extends ADODB_DataDict {
} }
?>
\ No newline at end of file
...@@ -148,4 +148,3 @@ end; ...@@ -148,4 +148,3 @@ end;
} }
?>
\ No newline at end of file
...@@ -122,4 +122,3 @@ function ActualType($meta) ...@@ -122,4 +122,3 @@ function ActualType($meta)
} }
} }
*/ */
?>
\ No newline at end of file
...@@ -64,4 +64,3 @@ class ADODB2_ibase extends ADODB_DataDict { ...@@ -64,4 +64,3 @@ class ADODB2_ibase extends ADODB_DataDict {
} }
?>
\ No newline at end of file
...@@ -77,4 +77,3 @@ class ADODB2_informix extends ADODB_DataDict { ...@@ -77,4 +77,3 @@ class ADODB2_informix extends ADODB_DataDict {
} }
?>
\ No newline at end of file
...@@ -279,4 +279,3 @@ CREATE TABLE ...@@ -279,4 +279,3 @@ CREATE TABLE
} }
} }
?>
\ No newline at end of file
...@@ -316,4 +316,4 @@ class ADODB2_mysql extends ADODB_DataDict { ...@@ -316,4 +316,4 @@ class ADODB2_mysql extends ADODB_DataDict {
return $retarr; return $retarr;
} }
} }
?>
...@@ -279,4 +279,3 @@ end; ...@@ -279,4 +279,3 @@ end;
return "COMMENT ON COLUMN $table.$col IS $cmt"; return "COMMENT ON COLUMN $table.$col IS $cmt";
} }
} }
?>
\ No newline at end of file
...@@ -368,4 +368,4 @@ CREATE [ UNIQUE ] INDEX index_name ON table ...@@ -368,4 +368,4 @@ CREATE [ UNIQUE ] INDEX index_name ON table
return $ftype; return $ftype;
} }
} }
?>
...@@ -118,4 +118,3 @@ class ADODB2_sapdb extends ADODB_DataDict { ...@@ -118,4 +118,3 @@ class ADODB2_sapdb extends ADODB_DataDict {
} }
} }
?>
\ No newline at end of file
...@@ -135,4 +135,4 @@ class ADODB2_sqlite extends ADODB_DataDict { ...@@ -135,4 +135,4 @@ class ADODB2_sqlite extends ADODB_DataDict {
} }
?>
...@@ -225,4 +225,3 @@ CREATE TABLE ...@@ -225,4 +225,3 @@ CREATE TABLE
return $sql; return $sql;
} }
} }
?>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment