1
0
mirror of synced 2024-12-13 14:56:01 +03:00

removing the closing PHP tags form all php files, it\'s not needed and can break sessions which are whitespace sensitive

This commit is contained in:
pookey 2006-09-03 22:46:30 +00:00
parent fb2a3bfde9
commit b340bfe11d
120 changed files with 109 additions and 120 deletions

View File

@ -97,4 +97,4 @@ abstract class Doctrine_Access implements ArrayAccess {
return $this->remove($offset);
}
}
?>

View File

@ -56,4 +56,4 @@ class Doctrine_Association extends Doctrine_Relation {
return $dql;
}
}
?>

View File

@ -68,4 +68,4 @@ class Doctrine_Cache implements iDoctrine_Cache {
}
}
?>

View File

@ -257,4 +257,4 @@ class Doctrine_Cache_File implements Countable {
}
}
?>

View File

@ -2,4 +2,4 @@
class Doctrine_Cache_Manager {
}
?>

View File

@ -2,4 +2,4 @@
class Doctrine_Cache_Memcache extends Doctrine_Cache {
}
?>

View File

@ -122,4 +122,4 @@ class Doctrine_Cache_Query_Sqlite implements Countable {
return $data[0];
}
}
?>

View File

@ -262,4 +262,4 @@ class Doctrine_Cache_Sqlite {
$this->autoClean();
}
}
?>

View File

@ -679,4 +679,4 @@ class Doctrine_Collection extends Doctrine_Access implements Countable, Iterator
return Doctrine_Lib::getCollectionAsString($this);
}
}
?>

View File

@ -160,4 +160,4 @@ class Doctrine_Collection_Batch extends Doctrine_Collection {
return new Doctrine_Iterator_Expandable($this);
}
}
?>

View File

@ -16,4 +16,4 @@ class Doctrine_Collection_Immediate extends Doctrine_Collection {
parent::__construct($table);
}
}
?>

View File

@ -15,4 +15,4 @@ class Doctrine_Collection_Lazy extends Doctrine_Collection_Batch {
parent::setBatchSize(1);
}
}
?>

View File

@ -28,4 +28,4 @@ class Doctrine_Collection_Offset extends Doctrine_Collection {
return new Doctrine_Iterator_Expandable($this);
}
}
?>

View File

@ -192,4 +192,4 @@ abstract class Doctrine_Configurable {
return $this->parent;
}
}
?>

View File

@ -939,4 +939,4 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun
return Doctrine_Lib::getConnectionAsString($this);
}
}
?>

View File

@ -22,4 +22,4 @@ class Doctrine_Connection_Common extends Doctrine_Connection {
return $query;
}
}
?>

View File

@ -10,4 +10,4 @@ class Doctrine_Connection_Exception extends Doctrine_Exception {
Doctrine_Manager::getInstance()->openConnection() to open a new connection.",Doctrine::ERR_NO_SESSIONS);
}
}
?>

View File

@ -18,4 +18,4 @@ class Doctrine_Connection_Firebird extends Doctrine_Connection {
return $data[0];
}
}
?>

View File

@ -3,4 +3,4 @@
* informix database driver
*/
class Doctrine_Connection_Informix extends Doctrine_Connection { }
?>

View File

@ -69,4 +69,4 @@ class Doctrine_Connection_Mssql extends Doctrine_Connection {
return $query;
}
}
?>

View File

@ -156,4 +156,4 @@ class Doctrine_Connection_Mysql extends Doctrine_Connection_Common {
*/
}
?>

View File

@ -29,4 +29,4 @@ class Doctrine_Connection_Oracle extends Doctrine_Connection {
return $data[0];
}
}
?>

View File

@ -15,4 +15,4 @@ class Doctrine_Connection_Pgsql extends Doctrine_Connection_Common {
return $data[0];
}
}
?>

View File

@ -4,4 +4,4 @@ require_once("Common.php");
* sqlite driver
*/
class Doctrine_Connection_Sqlite extends Doctrine_Connection_Common { }
?>

View File

@ -134,4 +134,4 @@ class Doctrine_DB extends PDO implements Countable, IteratorAggregate {
}
}
?>

View File

@ -46,4 +46,4 @@ class Doctrine_DBStatement extends PDOStatement {
return $result;
}
}
?>

View File

@ -134,4 +134,4 @@ class Doctrine_DataDict_Sqlite {
}
}
?>

View File

@ -64,4 +64,4 @@ abstract class Doctrine_EventListener implements Doctrine_EventListener_Interfac
}
?>

View File

@ -51,4 +51,4 @@ class Doctrine_EvenListener_Chain extends Doctrine_Access {
}
}
}
?>

View File

@ -149,4 +149,4 @@ class Doctrine_EventListener_Debugger extends Doctrine_EventListener {
$this->debug[] = new Doctrine_DebugMessage($collection,self::EVENT_PRECOLLDELETE);
}
}
?>

View File

@ -3,4 +3,4 @@
* an emtpy listener all components use this by default
*/
class Doctrine_EventListener_Empty extends Doctrine_EventListener { }
?>

View File

@ -3,4 +3,4 @@ class InvalidKeyException extends Exception { }
class InvalidTypeException extends Exception { }
class Doctrine_Exception extends Exception { }
class DQLException extends Doctrine_Exception { }
?>

View File

@ -8,4 +8,4 @@ class Doctrine_Find_Exception extends Doctrine_Exception {
parent::__construct("Couldn't find Data Access Object.",Doctrine::ERR_FIND);
}
}
?>

View File

@ -8,4 +8,4 @@ class Doctrine_Mapping_Exception extends Doctrine_Exception {
parent::__construct($message,Doctrine::ERR_MAPPING);
}
}
?>

View File

@ -9,4 +9,4 @@ class Doctrine_Naming_Exception extends Doctrine_Exception {
must be in format [Name]Table.", Doctrine::ERR_NAMING);
}
}
?>

View File

@ -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);
}
}
?>

View File

@ -11,4 +11,4 @@ class Doctrine_Filter {
return $this->name;
}
}
?>

View File

@ -3,4 +3,4 @@
* Foreign Key
*/
class Doctrine_ForeignKey extends Doctrine_Relation { }
?>

View File

@ -77,4 +77,4 @@ class Doctrine_Form implements Iterator {
return true;
}
}
?>

View File

@ -541,4 +541,4 @@ abstract class Doctrine_Hydrate extends Doctrine_Access {
return $this->tables[$name];
}
}
?>

View File

@ -17,4 +17,4 @@ class Doctrine_Identifier {
*/
const COMPOSITE = 4;
}
?>

View File

@ -87,4 +87,4 @@ class Doctrine_Import
} // end of Doctrine_Import
?>

View File

@ -57,4 +57,4 @@ abstract class Doctrine_Import_Builder
} // end of Doctrine_Import_Builder
?>

View File

@ -47,4 +47,4 @@ class Doctrine_Import_Builder_Exception
} // end of Doctrine_Import_Builder_Exception
?>

View File

@ -57,4 +57,4 @@ abstract class Doctrine_Import_Reader
} // end of Doctrine_Import_Reader
?>

View File

@ -72,4 +72,4 @@ class Doctrine_Import_Reader_Db extends Doctrine_Import_Reader
} // end of Doctrine_Import_Reader_Db
?>

View File

@ -47,4 +47,4 @@ class Doctrine_Import_Reader_Exception
} // end of Doctrine_Import_Reader_Exception
?>

View File

@ -61,4 +61,4 @@ class Doctrine_Import_Reader_Xml_Propel extends Doctrine_Import_Reader
} // end of Doctrine_Import_Reader_Xml_Propel
?>

View File

@ -22,4 +22,4 @@ class Doctrine_IndexGenerator {
return $value;
}
}
?>

View File

@ -99,4 +99,4 @@ abstract class Doctrine_Iterator implements Iterator {
}
?>

View File

@ -22,4 +22,4 @@ class Doctrine_Iterator_Expandable extends Doctrine_Iterator {
}
}
}
?>

View File

@ -28,4 +28,4 @@ class Doctrine_Iterator_Normal extends Doctrine_Iterator {
return ($this->index < $this->count);
}
}
?>

View File

@ -5,4 +5,4 @@ class Doctrine_Iterator_Offset extends Doctrine_Iterator {
public function valid() { }
}
?>

View File

@ -187,4 +187,4 @@ class Doctrine_Lib {
return implode("\n",$r);
}
}
?>

View File

@ -8,4 +8,3 @@
*/
class Doctrine_Locking_Exception extends Doctrine_Exception {}
?>

View File

@ -239,4 +239,4 @@ class Doctrine_Locking_Manager_Pessimistic
}
?>

View File

@ -294,4 +294,4 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera
return implode("\n",$r);
}
}
?>

View File

@ -57,4 +57,4 @@ class Doctrine_Module implements IteratorAggregate, Countable {
return count($this->components);
}
}
?>

View File

@ -6,4 +6,4 @@
* used for extra fast null value testing with isset() rather than array_key_exists()
*/
class Doctrine_Null { }
?>

View File

@ -812,4 +812,4 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
}
}
}
?>

View File

@ -42,4 +42,4 @@ abstract class Doctrine_Query_Condition extends Doctrine_Query_Part {
return "(".$r.")";
}
}
?>

View File

@ -2,4 +2,4 @@
require_once(Doctrine::getPath().DIRECTORY_SEPARATOR."Doctrine".DIRECTORY_SEPARATOR."Exception.php");
class Doctrine_Query_Exception extends Doctrine_Exception { }
?>

View File

@ -23,4 +23,4 @@ class Doctrine_Query_From extends Doctrine_Query_Part {
return ( ! empty($this->parts))?implode(", ", $this->parts):'';
}
}
?>

View File

@ -27,4 +27,4 @@ class Doctrine_Query_Groupby extends Doctrine_Query_Part {
return ( ! empty($this->parts))?implode(", ", $this->parts):'';
}
}
?>

View File

@ -71,4 +71,4 @@ class Doctrine_Query_Having extends Doctrine_Query_Condition {
return ( ! empty($this->parts))?implode(" AND ", $this->parts):'';
}
}
?>

View File

@ -38,4 +38,4 @@ class Doctrine_Query_Orderby extends Doctrine_Query_Part {
return ( ! empty($this->parts))?implode(", ", $this->parts):'';
}
}
?>

View File

@ -37,4 +37,4 @@ abstract class Doctrine_Query_Part extends Doctrine_Access {
}
?>

View File

@ -39,4 +39,4 @@ class Doctrine_Query_Where extends Doctrine_Query_Condition {
return ( ! empty($this->parts))?implode(" AND ", $this->parts):'';
}
}
?>

View File

@ -225,4 +225,4 @@ class Doctrine_RawSql extends Doctrine_Hydrate {
}
}
?>

View File

@ -1326,4 +1326,4 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite
return Doctrine_Lib::getRecordAsString($this);
}
}
?>

View File

@ -2,4 +2,4 @@
Doctrine::autoload('Doctrine_Exception');
class Doctrine_Record_Exception extends Doctrine_Exception { }
?>

View File

@ -39,4 +39,4 @@ class Doctrine_Record_Iterator extends ArrayIterator {
return $value;
}
}
?>

View File

@ -220,4 +220,4 @@ class Doctrine_Relation {
}
}
?>

View File

@ -111,4 +111,4 @@ class Doctrine_Repository implements Countable, IteratorAggregate {
$this->table->findAll();
}
}
?>

View File

@ -131,4 +131,4 @@ class Doctrine_Schema_Column extends Doctrine_Schema_Object
} // end of Doctrine_Schema_Column
?>

View File

@ -47,4 +47,4 @@ class Doctrine_Schema_Exception extends Exception
} // end of Doctrine_Schema_Exception
?>

View File

@ -122,4 +122,4 @@ class Doctrine_Schema_Relation extends Doctrine_Schema_Object
} // end of Doctrine_Schema_Relation
?>

View File

@ -940,4 +940,4 @@ abstract class Doctrine_Session extends Doctrine_Configurable implements Countab
return Doctrine_Lib::getSessionAsString($this);
}
}
?>

View File

@ -184,4 +184,4 @@ class Doctrine_Statement extends Doctrine_Access {
return $array;
}
}
?>

View File

@ -1001,4 +1001,4 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable {
return Doctrine_Lib::getTableAsString($this);
}
}
?>

View File

@ -11,4 +11,4 @@ class Doctrine_Table_Exception extends Doctrine_Exception {
to get on instance of a Doctrine_Table.",Doctrine::ERR_TABLE_INSTANCE);
}
}
?>

View File

@ -40,4 +40,4 @@ abstract class Doctrine_Tree extends Doctrine_Record {
abstract public function addNode();
}
?>

View File

@ -50,4 +50,4 @@ class Doctrine_Tree_NestedSet extends Doctrine_Record {
public function addNode() { }
}
?>

View File

@ -41,4 +41,4 @@ class Doctrine_Tree_PathModel extends Doctrine_Record {
public function addNode() { }
}
?>

View File

@ -275,4 +275,4 @@ class Doctrine_Validator {
endswitch;
}
}
?>

View File

@ -262,4 +262,4 @@ class Doctrine_Validator_Country {
}
}
?>

View File

@ -18,4 +18,4 @@ class Doctrine_Validator_Date {
return checkdate($e[1], $e[0], $e[2]);
}
}
?>

View File

@ -55,4 +55,4 @@ class Doctrine_Validator_Email {
return true;
}
}
?>

View File

@ -20,4 +20,4 @@ class Doctrine_Validator_Enum {
return true;
}
}
?>

View File

@ -30,4 +30,4 @@ class Doctrine_Validator_Exception extends Doctrine_Exception {
return $string.parent::__toString();
}
}
?>

View File

@ -14,4 +14,4 @@ class Doctrine_Validator_HtmlColor {
return true;
}
}
?>

View File

@ -2,4 +2,4 @@
interface Doctrine_Validator_Interface {
public function validate();
}
?>

View File

@ -11,4 +11,4 @@ class Doctrine_Validator_Ip {
return (bool) ip2long(str_replace("\0", '', $value));
}
}
?>

View File

@ -14,4 +14,4 @@ class Doctrine_Validator_NoSpace {
return true;
}
}
?>

View File

@ -11,4 +11,4 @@ class Doctrine_Validator_Notblank {
return (trim($value) != "");
}
}
?>

View File

@ -13,4 +13,4 @@ class Doctrine_Validator_Notnull {
return true;
}
}
?>

View File

@ -1,2 +1,2 @@
<?php
?>

View File

@ -18,4 +18,4 @@ class Doctrine_Validator_Range {
return true;
}
}
?>

View File

@ -14,4 +14,4 @@ class Doctrine_Validator_Regexp {
return false;
}
}
?>

View File

@ -10,4 +10,4 @@ class Doctrine_Validator_Required {
return ($value === null);
}
}
?>

Some files were not shown because too many files have changed in this diff Show More