Commit 085dc9d6 authored by zYne's avatar zYne

Enhanced class doc blocks, fixes #228

parent 799102b2
...@@ -19,15 +19,17 @@ ...@@ -19,15 +19,17 @@
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
require_once("Doctrine/Exception.php");
/** /**
* Doctrine * Doctrine
* the base class of Doctrine framework * the base class of Doctrine framework
* *
* @package Doctrine * @package Doctrine
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
final class Doctrine { final class Doctrine {
/** /**
......
...@@ -24,9 +24,13 @@ ...@@ -24,9 +24,13 @@
* the purpose of Doctrine_Access is to provice array access * the purpose of Doctrine_Access is to provice array access
* and property overload interface for subclasses * and property overload interface for subclasses
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
abstract class Doctrine_Access implements ArrayAccess { abstract class Doctrine_Access implements ArrayAccess {
/** /**
......
...@@ -21,9 +21,13 @@ ...@@ -21,9 +21,13 @@
/** /**
* Doctrine_Adapter_Statement * Doctrine_Adapter_Statement
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
abstract class Doctrine_Adapter_Statement { abstract class Doctrine_Adapter_Statement {
public function bindValue($no, $value) { public function bindValue($no, $value) {
......
...@@ -23,9 +23,13 @@ Doctrine::autoload("Access"); ...@@ -23,9 +23,13 @@ Doctrine::autoload("Access");
* Doctrine_Collection * Doctrine_Collection
* Collection of Doctrine_Record objects. * Collection of Doctrine_Record objects.
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Collection extends Doctrine_Access implements Countable, IteratorAggregate, Serializable { class Doctrine_Collection extends Doctrine_Access implements Countable, IteratorAggregate, Serializable {
/** /**
......
...@@ -24,11 +24,13 @@ Doctrine::autoload('Doctrine_Collection'); ...@@ -24,11 +24,13 @@ Doctrine::autoload('Doctrine_Collection');
* with batch load strategy * with batch load strategy
* *
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @version $Revision$
* @version 1.0 alpha * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Collection_Batch extends Doctrine_Collection { class Doctrine_Collection_Batch extends Doctrine_Collection {
/** /**
......
...@@ -21,8 +21,12 @@ ...@@ -21,8 +21,12 @@
/** /**
* Doctrine_Collection_Exception * Doctrine_Collection_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Collection_Exception extends Doctrine_Exception { } class Doctrine_Collection_Exception extends Doctrine_Exception { }
<?php <?php
Doctrine::autoload('Doctrine_Collection'); Doctrine::autoload('Doctrine_Collection');
/** /**
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @version $Revision$
* @version 1.0 alpha * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Collection_Immediate extends Doctrine_Collection { class Doctrine_Collection_Immediate extends Doctrine_Collection {
/** /**
......
...@@ -22,9 +22,13 @@ ...@@ -22,9 +22,13 @@
* Doctrine_Collection_Iterator * Doctrine_Collection_Iterator
* iterates through Doctrine_Collection * iterates through Doctrine_Collection
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
abstract class Doctrine_Collection_Iterator implements Iterator { abstract class Doctrine_Collection_Iterator implements Iterator {
/** /**
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Collection_Iterator'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Collection_Iterator');
/** /**
* Doctrine_Collection_Iterator_Normal * Doctrine_Collection_Iterator_Normal
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Collection_Iterator_Expandable extends Doctrine_Collection_Iterator { class Doctrine_Collection_Iterator_Expandable extends Doctrine_Collection_Iterator {
public function valid() { public function valid() {
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Collection_Iterator'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Collection_Iterator');
/** /**
* Doctrine_Collection_Iterator_Normal * Doctrine_Collection_Iterator_Normal
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Collection_Iterator_Normal extends Doctrine_Collection_Iterator { class Doctrine_Collection_Iterator_Normal extends Doctrine_Collection_Iterator {
/** /**
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Collection_Iterator'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Collection_Iterator');
/** /**
* Doctrine_Collection_Iterator_Normal * Doctrine_Collection_Iterator_Normal
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Collection_Iterator_Offset extends Doctrine_Collection_Iterator { class Doctrine_Collection_Iterator_Offset extends Doctrine_Collection_Iterator {
public function valid() { } public function valid() { }
......
...@@ -3,6 +3,13 @@ require_once("Batch.php"); ...@@ -3,6 +3,13 @@ require_once("Batch.php");
/** /**
* a collection of Doctrine_Record objects with lazy load strategy * a collection of Doctrine_Record objects with lazy load strategy
* (batch load strategy with batch size 1) * (batch load strategy with batch size 1)
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Collection_Lazy extends Doctrine_Collection_Batch { class Doctrine_Collection_Lazy extends Doctrine_Collection_Batch {
/** /**
......
...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Collection_Offset'); ...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Collection_Offset');
* Doctrine_Collection_Offset * Doctrine_Collection_Offset
* Collection of Doctrine_Record objects. * Collection of Doctrine_Record objects.
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Collection_Offset extends Doctrine_Collection { class Doctrine_Collection_Offset extends Doctrine_Collection {
/** /**
......
...@@ -18,14 +18,17 @@ ...@@ -18,14 +18,17 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Compiler * Doctrine_Compiler
* This class can be used for compiling the entire Doctrine framework into a single file * This class can be used for compiling the entire Doctrine framework into a single file
* *
* @package Doctrine * @package Doctrine
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Compiler { class Doctrine_Compiler {
/** /**
......
...@@ -18,12 +18,15 @@ ...@@ -18,12 +18,15 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Compiler_Exception * Doctrine_Compiler_Exception
* *
* @package Doctrine * @package Doctrine
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Compiler_Exception extends Doctrine_Exception { } class Doctrine_Compiler_Exception extends Doctrine_Exception { }
...@@ -23,9 +23,13 @@ ...@@ -23,9 +23,13 @@
* the base for Doctrine_Table, Doctrine_Manager and Doctrine_Connection * the base for Doctrine_Table, Doctrine_Manager and Doctrine_Connection
* *
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
abstract class Doctrine_Configurable { abstract class Doctrine_Configurable {
......
...@@ -18,13 +18,16 @@ ...@@ -18,13 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Connection * Doctrine_Connection
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
abstract class Doctrine_Connection extends Doctrine_Configurable implements Countable, IteratorAggregate { abstract class Doctrine_Connection extends Doctrine_Configurable implements Countable, IteratorAggregate {
/** /**
......
...@@ -2,6 +2,13 @@ ...@@ -2,6 +2,13 @@
Doctrine::autoload('Doctrine_Connection'); Doctrine::autoload('Doctrine_Connection');
/** /**
* standard connection, the parent of pgsql, mysql and sqlite * standard connection, the parent of pgsql, mysql and sqlite
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Connection_Common extends Doctrine_Connection { class Doctrine_Connection_Common extends Doctrine_Connection {
/** /**
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception');
/** /**
* Doctrine_Exception * Doctrine_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Connection_Exception extends Doctrine_Exception { } class Doctrine_Connection_Exception extends Doctrine_Exception { }
...@@ -22,13 +22,15 @@ Doctrine::autoload('Doctrine_Connection'); ...@@ -22,13 +22,15 @@ Doctrine::autoload('Doctrine_Connection');
/** /**
* Doctrine_Connection_Firebird * Doctrine_Connection_Firebird
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @author Lorenzo Alberton <l.alberton@quipo.it> (PEAR MDB2 library interbase driver) * @author Lorenzo Alberton <l.alberton@quipo.it> (PEAR MDB2 library interbase driver)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Connection_Firebird extends Doctrine_Connection { class Doctrine_Connection_Firebird extends Doctrine_Connection {
/** /**
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Connection_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Connection_Exception');
/** /**
* Doctrine_Connection_Firebird_Exception * Doctrine_Connection_Firebird_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Connection_Firebird_Exception extends Doctrine_Connection_Exception { } class Doctrine_Connection_Firebird_Exception extends Doctrine_Connection_Exception { }
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Connection'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Connection');
/** /**
* Doctrine_Connection_Mysql * Doctrine_Connection_Mysql
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Connection_Informix extends Doctrine_Connection { class Doctrine_Connection_Informix extends Doctrine_Connection {
/** /**
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Connection_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Connection_Exception');
/** /**
* Doctrine_Connection_Informix_Exception * Doctrine_Connection_Informix_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Connection_Informix_Exception extends Doctrine_Connection_Exception { } class Doctrine_Connection_Informix_Exception extends Doctrine_Connection_Exception { }
...@@ -22,12 +22,14 @@ Doctrine::autoload('Doctrine_Connection'); ...@@ -22,12 +22,14 @@ Doctrine::autoload('Doctrine_Connection');
/** /**
* Doctrine_Connection_Mssql * Doctrine_Connection_Mssql
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Connection_Mssql extends Doctrine_Connection { class Doctrine_Connection_Mssql extends Doctrine_Connection {
/** /**
......
...@@ -23,12 +23,13 @@ Doctrine::autoload('Doctrine_Connection_Exception'); ...@@ -23,12 +23,13 @@ Doctrine::autoload('Doctrine_Connection_Exception');
* Doctrine_Connection_Mssql_Exception * Doctrine_Connection_Mssql_Exception
* *
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @since 1.0 * @since 1.0
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
*/ */
class Doctrine_Connection_Mssql_Exception extends Doctrine_Connection_Exception { class Doctrine_Connection_Mssql_Exception extends Doctrine_Connection_Exception {
/** /**
......
...@@ -22,12 +22,14 @@ Doctrine::autoload('Doctrine_Connection_Common'); ...@@ -22,12 +22,14 @@ Doctrine::autoload('Doctrine_Connection_Common');
/** /**
* Doctrine_Connection_Mysql * Doctrine_Connection_Mysql
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Connection_Mysql extends Doctrine_Connection_Common { class Doctrine_Connection_Mysql extends Doctrine_Connection_Common {
/** /**
......
...@@ -23,12 +23,13 @@ Doctrine::autoload('Doctrine_Connection_Exception'); ...@@ -23,12 +23,13 @@ Doctrine::autoload('Doctrine_Connection_Exception');
* Doctrine_Connection_Mysql_Exception * Doctrine_Connection_Mysql_Exception
* *
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @since 1.0 * @since 1.0
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
*/ */
class Doctrine_Connection_Mysql_Exception extends Doctrine_Connection_Exception { class Doctrine_Connection_Mysql_Exception extends Doctrine_Connection_Exception {
/** /**
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Connection'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Connection');
/** /**
* Doctrine_Connection_Oracle * Doctrine_Connection_Oracle
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Connection_Oracle extends Doctrine_Connection { class Doctrine_Connection_Oracle extends Doctrine_Connection {
/** /**
......
...@@ -23,12 +23,13 @@ Doctrine::autoload('Doctrine_Connection_Exception'); ...@@ -23,12 +23,13 @@ Doctrine::autoload('Doctrine_Connection_Exception');
* Doctrine_Connection_Oracle_Exception * Doctrine_Connection_Oracle_Exception
* *
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @since 1.0 * @since 1.0
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
*/ */
class Doctrine_Connection_Oracle_Exception extends Doctrine_Connection_Exception { class Doctrine_Connection_Oracle_Exception extends Doctrine_Connection_Exception {
/** /**
......
...@@ -22,12 +22,14 @@ Doctrine::autoload("Doctrine_Connection_Common"); ...@@ -22,12 +22,14 @@ Doctrine::autoload("Doctrine_Connection_Common");
/** /**
* Doctrine_Connection_Pgsql * Doctrine_Connection_Pgsql
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Connection_Pgsql extends Doctrine_Connection_Common { class Doctrine_Connection_Pgsql extends Doctrine_Connection_Common {
/** /**
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Connection_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Connection_Exception');
/** /**
* Doctrine_Connection_Pgsql_Exception * Doctrine_Connection_Pgsql_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Connection_Pgsql_Exception extends Doctrine_Connection_Exception { } class Doctrine_Connection_Pgsql_Exception extends Doctrine_Connection_Exception { }
...@@ -22,14 +22,15 @@ Doctrine::autoload("Doctrine_Connection_Common"); ...@@ -22,14 +22,15 @@ Doctrine::autoload("Doctrine_Connection_Common");
/** /**
* Doctrine_Connection_Sqlite * Doctrine_Connection_Sqlite
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Connection_Sqlite extends Doctrine_Connection_Common { class Doctrine_Connection_Sqlite extends Doctrine_Connection_Common {
/** /**
* @var string $driverName the name of this connection driver * @var string $driverName the name of this connection driver
......
...@@ -23,12 +23,13 @@ Doctrine::autoload('Doctrine_Connection_Exception'); ...@@ -23,12 +23,13 @@ Doctrine::autoload('Doctrine_Connection_Exception');
* Doctrine_Connection_Sqlite_Exception * Doctrine_Connection_Sqlite_Exception
* *
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @since 1.0 * @since 1.0
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
*/ */
class Doctrine_Connection_Sqlite_Exception extends Doctrine_Connection_Exception { class Doctrine_Connection_Sqlite_Exception extends Doctrine_Connection_Exception {
/** /**
......
...@@ -18,13 +18,16 @@ ...@@ -18,13 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Connection_Transaction * Doctrine_Connection_Transaction
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Connection_Transaction implements Countable, IteratorAggregate { class Doctrine_Connection_Transaction implements Countable, IteratorAggregate {
/** /**
......
...@@ -18,13 +18,16 @@ ...@@ -18,13 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Connection_UnitOfWork * Doctrine_Connection_UnitOfWork
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Connection_UnitOfWork implements IteratorAggregate, Countable { class Doctrine_Connection_UnitOfWork implements IteratorAggregate, Countable {
/** /**
......
...@@ -18,13 +18,16 @@ ...@@ -18,13 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_DataDict * Doctrine_DataDict
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_DataDict { class Doctrine_DataDict {
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception');
/** /**
* Doctrine_DataDict_Exception * Doctrine_DataDict_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_DataDict_Exception extends Doctrine_Exception { } class Doctrine_DataDict_Exception extends Doctrine_Exception { }
...@@ -21,10 +21,12 @@ ...@@ -21,10 +21,12 @@
Doctrine::autoload('Doctrine_DataDict'); Doctrine::autoload('Doctrine_DataDict');
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_DataDict_Informix extends Doctrine_DataDict { } class Doctrine_DataDict_Informix extends Doctrine_DataDict { }
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Informix_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Informix_Exception');
/** /**
* Doctrine_DataDict_Sqlite_Exception * Doctrine_DataDict_Sqlite_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_DataDict_Informix_Exception extends Doctrine_DataDict_Exception { } class Doctrine_DataDict_Informix_Exception extends Doctrine_DataDict_Exception { }
...@@ -18,16 +18,16 @@ ...@@ -18,16 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_DataDict_Mssql extends Doctrine_DataDict { class Doctrine_DataDict_Mssql extends Doctrine_DataDict {
/** /**
* Obtain DBMS specific SQL code portion needed to declare an text type * Obtain DBMS specific SQL code portion needed to declare an text type
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Exception');
/** /**
* Doctrine_DataDict_Mssql_Exception * Doctrine_DataDict_Mssql_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_DataDict_Mssql_Exception extends Doctrine_Exception { } class Doctrine_DataDict_Mssql_Exception extends Doctrine_Exception { }
...@@ -18,16 +18,16 @@ ...@@ -18,16 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_DataDict_Mysql extends Doctrine_DataDict { class Doctrine_DataDict_Mysql extends Doctrine_DataDict {
/** /**
* Obtain DBMS specific SQL code portion needed to declare an text type * Obtain DBMS specific SQL code portion needed to declare an text type
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Exception');
/** /**
* Doctrine_DataDict_Mysql_Exception * Doctrine_DataDict_Mysql_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_DataDict_Mysql_Exception extends Doctrine_DataDict_Exception { } class Doctrine_DataDict_Mysql_Exception extends Doctrine_DataDict_Exception { }
...@@ -18,15 +18,15 @@ ...@@ -18,15 +18,15 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_DataDict_Oracle extends Doctrine_DataDict { class Doctrine_DataDict_Oracle extends Doctrine_DataDict {
/** /**
* Obtain DBMS specific SQL code portion needed to declare an text type * Obtain DBMS specific SQL code portion needed to declare an text type
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Exception');
/** /**
* Doctrine_DataDict_Oracle_Exception * Doctrine_DataDict_Oracle_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_DataDict_Oracle_Exception extends Doctrine_DataDict_Exception { } class Doctrine_DataDict_Oracle_Exception extends Doctrine_DataDict_Exception { }
...@@ -18,17 +18,17 @@ ...@@ -18,17 +18,17 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Paul Cooper <pgc@ucecom.com> * @author Paul Cooper <pgc@ucecom.com>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_DataDict_Pgsql extends Doctrine_DataDict { class Doctrine_DataDict_Pgsql extends Doctrine_DataDict {
/** /**
* Obtain DBMS specific SQL code portion needed to declare an text type * Obtain DBMS specific SQL code portion needed to declare an text type
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Exception');
/** /**
* Doctrine_DataDict_Pgsql_Exception * Doctrine_DataDict_Pgsql_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_DataDict_Pgsql_Exception extends Doctrine_DataDict_Exception { } class Doctrine_DataDict_Pgsql_Exception extends Doctrine_DataDict_Exception { }
...@@ -21,11 +21,13 @@ ...@@ -21,11 +21,13 @@
Doctrine::autoload('Doctrine_DataDict'); Doctrine::autoload('Doctrine_DataDict');
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_DataDict_Sqlite extends Doctrine_DataDict { class Doctrine_DataDict_Sqlite extends Doctrine_DataDict {
/** /**
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_DataDict_Exception');
/** /**
* Doctrine_DataDict_Sqlite_Exception * Doctrine_DataDict_Sqlite_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_DataDict_Sqlite_Exception extends Doctrine_DataDict_Exception { } class Doctrine_DataDict_Sqlite_Exception extends Doctrine_DataDict_Exception { }
...@@ -18,7 +18,6 @@ ...@@ -18,7 +18,6 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Db * Doctrine_Db
* A thin wrapper layer on top of PDO / Doctrine_Adapter * A thin wrapper layer on top of PDO / Doctrine_Adapter
...@@ -29,9 +28,13 @@ ...@@ -29,9 +28,13 @@
* Aspects such as logging, query profiling and caching can be easily implemented through * Aspects such as logging, query profiling and caching can be easily implemented through
* the use of these listeners * the use of these listeners
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Db implements Countable, IteratorAggregate, Doctrine_Adapter_Interface { class Doctrine_Db implements Countable, IteratorAggregate, Doctrine_Adapter_Interface {
/** /**
......
...@@ -21,9 +21,13 @@ ...@@ -21,9 +21,13 @@
/** /**
* Doctrine_Db_Event * Doctrine_Db_Event
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Db_Event { class Doctrine_Db_Event {
const QUERY = 1; const QUERY = 1;
......
...@@ -21,9 +21,13 @@ ...@@ -21,9 +21,13 @@
/** /**
* Doctrine_Db_EventListener * Doctrine_Db_EventListener
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Db_EventListener implements Doctrine_Db_EventListener_Interface { class Doctrine_Db_EventListener implements Doctrine_Db_EventListener_Interface {
public function onPreQuery(Doctrine_Db_Event $event) { } public function onPreQuery(Doctrine_Db_Event $event) { }
......
...@@ -20,13 +20,16 @@ ...@@ -20,13 +20,16 @@
*/ */
Doctrine::autoload('Doctrine_Access'); Doctrine::autoload('Doctrine_Access');
Doctrine::autoload('Doctrine_Db_EventListener_Interface');
/** /**
* Doctrine_Db_EventListener * Doctrine_Db_EventListener
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Db_EventListener_Chain extends Doctrine_Access implements Doctrine_Db_EventListener_Interface { class Doctrine_Db_EventListener_Chain extends Doctrine_Access implements Doctrine_Db_EventListener_Interface {
private $listeners = array(); private $listeners = array();
......
...@@ -21,8 +21,12 @@ ...@@ -21,8 +21,12 @@
/** /**
* Doctrine_Db_Exception * Doctrine_Db_Exception
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Db_Exception extends Doctrine_Exception { } class Doctrine_Db_Exception extends Doctrine_Exception { }
...@@ -21,11 +21,13 @@ ...@@ -21,11 +21,13 @@
Doctrine::autoload('Doctrine_Db'); Doctrine::autoload('Doctrine_Db');
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Db_Firebird extends Doctrine_Db { class Doctrine_Db_Firebird extends Doctrine_Db {
......
...@@ -21,11 +21,13 @@ ...@@ -21,11 +21,13 @@
Doctrine::autoload('Doctrine_Db'); Doctrine::autoload('Doctrine_Db');
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Db_Informix extends Doctrine_Db { class Doctrine_Db_Informix extends Doctrine_Db {
......
...@@ -21,11 +21,13 @@ ...@@ -21,11 +21,13 @@
Doctrine::autoload('Doctrine_Db'); Doctrine::autoload('Doctrine_Db');
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Db_Mssql extends Doctrine_Db { class Doctrine_Db_Mssql extends Doctrine_Db {
......
...@@ -21,11 +21,13 @@ ...@@ -21,11 +21,13 @@
Doctrine::autoload('Doctrine_Db'); Doctrine::autoload('Doctrine_Db');
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Db_Mysql extends Doctrine_Db { class Doctrine_Db_Mysql extends Doctrine_Db {
protected static $errorCodeMap = array( protected static $errorCodeMap = array(
......
...@@ -21,11 +21,13 @@ ...@@ -21,11 +21,13 @@
Doctrine::autoload('Doctrine_Db'); Doctrine::autoload('Doctrine_Db');
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Db_Oracle extends Doctrine_Db { class Doctrine_Db_Oracle extends Doctrine_Db {
......
...@@ -21,11 +21,13 @@ ...@@ -21,11 +21,13 @@
Doctrine::autoload('Doctrine_Db'); Doctrine::autoload('Doctrine_Db');
/** /**
* @package Doctrine * @package Doctrine
* @url http://www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Id$ * @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Db_Pgsql extends Doctrine_Db { class Doctrine_Db_Pgsql extends Doctrine_Db {
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Overloadable'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Overloadable');
/** /**
* Doctrine_Db_Profiler * Doctrine_Db_Profiler
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Db_Profiler implements Doctrine_Overloadable { class Doctrine_Db_Profiler implements Doctrine_Overloadable {
/** /**
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Db_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Db_Exception');
/** /**
* Doctrine_Db_Exception * Doctrine_Db_Exception
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Db_Profiler_Exception extends Doctrine_Db_Exception { } class Doctrine_Db_Profiler_Exception extends Doctrine_Db_Exception { }
...@@ -18,13 +18,16 @@ ...@@ -18,13 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Db_Profiler_Query * Doctrine_Db_Profiler_Query
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Db_Profiler_Query { class Doctrine_Db_Profiler_Query {
/** /**
......
...@@ -21,9 +21,13 @@ ...@@ -21,9 +21,13 @@
/** /**
* Doctrine_Db_Statement * Doctrine_Db_Statement
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Db_Statement extends PDOStatement { class Doctrine_Db_Statement extends PDOStatement {
protected $dbh; protected $dbh;
......
...@@ -24,10 +24,13 @@ Doctrine::autoload('Doctrine_EventListener_Interface'); ...@@ -24,10 +24,13 @@ Doctrine::autoload('Doctrine_EventListener_Interface');
* the empty methods allow child classes to only implement the methods they need to implement * the empty methods allow child classes to only implement the methods they need to implement
* *
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_EventListener implements Doctrine_EventListener_Interface { class Doctrine_EventListener implements Doctrine_EventListener_Interface {
......
...@@ -22,10 +22,13 @@ Doctrine::autoload('Doctrine_EventListener'); ...@@ -22,10 +22,13 @@ Doctrine::autoload('Doctrine_EventListener');
/** /**
* Doctrine_EventListener_AccessorInvoker * Doctrine_EventListener_AccessorInvoker
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_EventListener_AccessorInvoker extends Doctrine_EventListener { class Doctrine_EventListener_AccessorInvoker extends Doctrine_EventListener {
/** /**
......
...@@ -20,16 +20,18 @@ ...@@ -20,16 +20,18 @@
*/ */
Doctrine::autoload('Doctrine_Access'); Doctrine::autoload('Doctrine_Access');
Doctrine::autoload('Doctrine_EventListener_Interface');
/** /**
* Doctrine_EventListener_Chain * Doctrine_EventListener_Chain
* this class represents a chain of different listeners, * this class represents a chain of different listeners,
* useful for having multiple listeners listening the events at the same time * useful for having multiple listeners listening the events at the same time
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_EventListener_Chain extends Doctrine_Access implements Doctrine_EventListener_Interface { class Doctrine_EventListener_Chain extends Doctrine_Access implements Doctrine_EventListener_Interface {
/** /**
......
<?php <?php
/** /**
* an emtpy listener all components use this by default * an emtpy listener all components use this by default
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_EventListener_Empty extends Doctrine_EventListener { } class Doctrine_EventListener_Empty extends Doctrine_EventListener { }
...@@ -18,12 +18,15 @@ ...@@ -18,12 +18,15 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Exception * Doctrine_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Exception extends Exception { } class Doctrine_Exception extends Exception { }
...@@ -18,13 +18,16 @@ ...@@ -18,13 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Export * Doctrine_Export
* *
* @package Doctrine * @package Doctrine
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Export { class Doctrine_Export {
/** /**
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception');
/** /**
* Doctrine_Export_Exception * Doctrine_Export_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Export_Exception extends Doctrine_Exception { } class Doctrine_Export_Exception extends Doctrine_Exception { }
...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Export'); ...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Export');
* Doctrine_Export_Mysql * Doctrine_Export_Mysql
* *
* @package Doctrine * @package Doctrine
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Export_Mysql extends Doctrine_Export { class Doctrine_Export_Mysql extends Doctrine_Export {
/** /**
......
...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Export'); ...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Export');
* Doctrine_Export_Pgsql * Doctrine_Export_Pgsql
* *
* @package Doctrine * @package Doctrine
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Export_Pgsql extends Doctrine_Export { class Doctrine_Export_Pgsql extends Doctrine_Export {
/** /**
......
...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Export'); ...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Export');
* Doctrine_Export_Sqlite * Doctrine_Export_Sqlite
* *
* @package Doctrine * @package Doctrine
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Export_Sqlite extends Doctrine_Export { class Doctrine_Export_Sqlite extends Doctrine_Export {
/** /**
......
...@@ -18,13 +18,16 @@ ...@@ -18,13 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Expression * Doctrine_Expression
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Expression { class Doctrine_Expression {
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression');
/** /**
* Doctrine_Expression_Firebird * Doctrine_Expression_Firebird
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Expression_Firebird extends Doctrine_Expression { class Doctrine_Expression_Firebird extends Doctrine_Expression {
/** /**
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Expression');
/** /**
* Doctrine_Expression_Informix * Doctrine_Expression_Informix
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Expression_Informix extends Doctrine_Expression { } class Doctrine_Expression_Informix extends Doctrine_Expression { }
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression');
/** /**
* Doctrine_Expression_Mssql * Doctrine_Expression_Mssql
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Expression_Mssql extends Doctrine_Expression { class Doctrine_Expression_Mssql extends Doctrine_Expression {
/** /**
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression');
/** /**
* Doctrine_Expression_Mysql * Doctrine_Expression_Mysql
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Expression_Mysql extends Doctrine_Expression { class Doctrine_Expression_Mysql extends Doctrine_Expression {
/** /**
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression');
/** /**
* Doctrine_Expression_Sqlite * Doctrine_Expression_Sqlite
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Expression_Oracle extends Doctrine_Expression { class Doctrine_Expression_Oracle extends Doctrine_Expression {
/** /**
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression');
/** /**
* Doctrine_Expression_Pgsql * Doctrine_Expression_Pgsql
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Expression_Pgsql extends Doctrine_Expression { class Doctrine_Expression_Pgsql extends Doctrine_Expression {
/** /**
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Expression');
/** /**
* Doctrine_Expression_Sqlite * Doctrine_Expression_Sqlite
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Expression_Sqlite extends Doctrine_Expression { class Doctrine_Expression_Sqlite extends Doctrine_Expression {
/** /**
......
...@@ -24,9 +24,13 @@ Doctrine::autoload('Doctrine_Access'); ...@@ -24,9 +24,13 @@ Doctrine::autoload('Doctrine_Access');
* Its purpose is to populate object graphs. * Its purpose is to populate object graphs.
* *
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
abstract class Doctrine_Hydrate extends Doctrine_Access { abstract class Doctrine_Hydrate extends Doctrine_Access {
/** /**
......
...@@ -18,14 +18,16 @@ ...@@ -18,14 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Identifier * Doctrine_Identifier
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Identifier { class Doctrine_Identifier {
/** /**
......
...@@ -25,15 +25,18 @@ ...@@ -25,15 +25,18 @@
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/
/** /**
* class Doctrine_Import * class Doctrine_Import
* Main responsible of performing import operation. Delegates database schema * Main responsible of performing import operation. Delegates database schema
* reading to a reader object and passes the result to a builder object which * reading to a reader object and passes the result to a builder object which
* builds a Doctrine data model. * builds a Doctrine data model.
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Import { class Doctrine_Import {
/** /**
......
...@@ -25,13 +25,16 @@ ...@@ -25,13 +25,16 @@
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/
/** /**
* class Doctrine_Import_Builder * class Doctrine_Import_Builder
* Is responsible of building Doctrine structure based on a database schema. * Is responsible of building Doctrine structure based on a database schema.
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Import_Builder { class Doctrine_Import_Builder {
......
...@@ -26,12 +26,16 @@ Doctrine::autoload('Doctrine_Import_Builder'); ...@@ -26,12 +26,16 @@ Doctrine::autoload('Doctrine_Import_Builder');
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/ */
/** /**
* class Doctrine_Import_Builder_BaseClass * class Doctrine_Import_Builder_BaseClass
* Builds a Doctrine_Record base class definition based on a schema. * Builds a Doctrine_Record base class definition based on a schema.
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Import_Builder_BaseClass extends Doctrine_Import_Builder { class Doctrine_Import_Builder_BaseClass extends Doctrine_Import_Builder {
} }
...@@ -26,8 +26,14 @@ Doctrine::autoload('Doctrine_Import_Exception'); ...@@ -26,8 +26,14 @@ Doctrine::autoload('Doctrine_Import_Exception');
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/ */
/** /**
* class Doctrine_Import_Builder_Exception * class Doctrine_Import_Builder_Exception
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Import_Builder_Exception extends Doctrine_Import_Exception { } class Doctrine_Import_Builder_Exception extends Doctrine_Import_Exception { }
...@@ -25,8 +25,14 @@ Doctrine::autoload('Doctrine_Exception'); ...@@ -25,8 +25,14 @@ Doctrine::autoload('Doctrine_Exception');
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @version $Id$ * @version $Id$
*/ */
/** /**
* class Doctrine_Import_Exception * class Doctrine_Import_Exception
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Import_Exception extends Doctrine_Exception { } class Doctrine_Import_Exception extends Doctrine_Exception { }
...@@ -25,14 +25,17 @@ ...@@ -25,14 +25,17 @@
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/
/** /**
* class Doctrine_Import_Reader * class Doctrine_Import_Reader
* Is responsible of reading a database definitions from a source and costructing a * Is responsible of reading a database definitions from a source and costructing a
* database schema * database schema
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
abstract class Doctrine_Import_Reader abstract class Doctrine_Import_Reader
{ {
......
...@@ -26,13 +26,17 @@ Doctrine::autoload('Doctrine_Import_Reader'); ...@@ -26,13 +26,17 @@ Doctrine::autoload('Doctrine_Import_Reader');
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/ */
/** /**
* class Doctrine_Import_Reader_Db * class Doctrine_Import_Reader_Db
* Reads a database using the given PDO connection and constructs a database * Reads a database using the given PDO connection and constructs a database
* schema * schema
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Import_Reader_Db extends Doctrine_Import_Reader class Doctrine_Import_Reader_Db extends Doctrine_Import_Reader
{ {
......
...@@ -25,12 +25,15 @@ ...@@ -25,12 +25,15 @@
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/
/** /**
* class Doctrine_Import_Reader_Exception * class Doctrine_Import_Reader_Exception
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Import_Reader_Exception class Doctrine_Import_Reader_Exception
{ {
......
...@@ -26,11 +26,15 @@ Doctrine::autoload('Doctrine_Import_Reader'); ...@@ -26,11 +26,15 @@ Doctrine::autoload('Doctrine_Import_Reader');
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/ */
/** /**
* class Doctrine_Import_Reader_Xml_Propel * class Doctrine_Import_Reader_Xml_Propel
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Import_Reader_Xml_Propel extends Doctrine_Import_Reader class Doctrine_Import_Reader_Xml_Propel extends Doctrine_Import_Reader
{ {
......
...@@ -18,13 +18,16 @@ ...@@ -18,13 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL
* *
* Doctrine_Lib has not commonly used static functions, mostly for debugging purposes * Doctrine_Lib has not commonly used static functions, mostly for debugging purposes
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Lib { class Doctrine_Lib {
/** /**
......
<?PHP <?PHP
/** /**
* Locking exception class * Locking exception class
* *
* A loking exception represents an error that occured during a locking process * A loking exception represents an error that occured during a locking process
* (obtain/release locks). * (obtain/release locks).
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Locking_Exception extends Doctrine_Exception {} class Doctrine_Locking_Exception extends Doctrine_Exception {}
...@@ -19,15 +19,19 @@ ...@@ -19,15 +19,19 @@
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Class for handling the pessimistic offline locking of {@link Doctrine_Record}s. * @link www.phpdoctrine.com
* Offline locking of records comes in handy where you need to make sure that * Offline locking of records comes in handy where you need to make sure that
* a time-consuming task on a record or many records, which is spread over several * a time-consuming task on a record or many records, which is spread over several
* page requests can't be interfered by other users. * page requests can't be interfered by other users.
* *
* @author Roman Borschel <roman@code-factory.org> * @author Roman Borschel <roman@code-factory.org>
* @author Pierre Minnieur <pm@pierre-minnieur.de> * @author Pierre Minnieur <pm@pierre-minnieur.de>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0 * @since 1.0
* @package Doctrine
* @category Object Relational Mapping
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Locking_Manager_Pessimistic { class Doctrine_Locking_Manager_Pessimistic {
/** /**
......
...@@ -18,14 +18,17 @@ ...@@ -18,14 +18,17 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL
* *
* Doctrine_Manager is the base component of all doctrine based projects. * Doctrine_Manager is the base component of all doctrine based projects.
* It opens and keeps track of all connections (database connections). * It opens and keeps track of all connections (database connections).
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Manager extends Doctrine_Configurable implements Countable, IteratorAggregate { class Doctrine_Manager extends Doctrine_Configurable implements Countable, IteratorAggregate {
/** /**
......
...@@ -18,12 +18,15 @@ ...@@ -18,12 +18,15 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Manager_Exception * Doctrine_Manager_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Manager_Exception extends Doctrine_Exception { } class Doctrine_Manager_Exception extends Doctrine_Exception { }
...@@ -24,8 +24,12 @@ ...@@ -24,8 +24,12 @@
* Simple empty class representing a null value * Simple empty class representing a null value
* 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()
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
final class Doctrine_Null { } final class Doctrine_Null { }
...@@ -18,13 +18,16 @@ ...@@ -18,13 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Query * Doctrine_Query
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Query extends Doctrine_Hydrate implements Countable { class Doctrine_Query extends Doctrine_Hydrate implements Countable {
/** /**
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Query_Part'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Query_Part');
/** /**
* Doctrine_Query_Orderby * Doctrine_Query_Orderby
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Query_Orderby extends Doctrine_Query_Part { class Doctrine_Query_Orderby extends Doctrine_Query_Part {
/** /**
......
...@@ -22,9 +22,13 @@ Doctrine::autoload("Doctrine_Access"); ...@@ -22,9 +22,13 @@ Doctrine::autoload("Doctrine_Access");
/** /**
* Doctrine_Query_Part * Doctrine_Query_Part
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
abstract class Doctrine_Query_Part extends Doctrine_Access { abstract class Doctrine_Query_Part extends Doctrine_Access {
/** /**
......
...@@ -18,13 +18,16 @@ ...@@ -18,13 +18,16 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Query * Doctrine_Query
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Query_Set extends Doctrine_Query_Part { class Doctrine_Query_Set extends Doctrine_Query_Part {
public function parse($dql) { public function parse($dql) {
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Hydrate'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Hydrate');
/** /**
* Doctrine_RawSql * Doctrine_RawSql
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_RawSql extends Doctrine_Hydrate { class Doctrine_RawSql extends Doctrine_Hydrate {
/** /**
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception');
/** /**
* Doctrine_RawSql_Exception * Doctrine_RawSql_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_RawSql_Exception extends Doctrine_Exception { } class Doctrine_RawSql_Exception extends Doctrine_Exception { }
...@@ -23,11 +23,14 @@ Doctrine::autoload('Doctrine_Access'); ...@@ -23,11 +23,14 @@ Doctrine::autoload('Doctrine_Access');
* Doctrine_Record * Doctrine_Record
* All record classes should inherit this super class * All record classes should inherit this super class
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
abstract class Doctrine_Record extends Doctrine_Access implements Countable, IteratorAggregate, Serializable { abstract class Doctrine_Record extends Doctrine_Access implements Countable, IteratorAggregate, Serializable {
/** /**
* STATE CONSTANTS * STATE CONSTANTS
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception');
/** /**
* Doctrine_Exception * Doctrine_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Record_Exception extends Doctrine_Exception { } class Doctrine_Record_Exception extends Doctrine_Exception { }
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Record_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Record_Exception');
/** /**
* Doctrine_Exception * Doctrine_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Record_State_Exception extends Doctrine_Record_Exception { } class Doctrine_Record_State_Exception extends Doctrine_Record_Exception { }
...@@ -22,9 +22,13 @@ ...@@ -22,9 +22,13 @@
* Doctrine_Relation * Doctrine_Relation
* This class represents a relation between components * This class represents a relation between components
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
abstract class Doctrine_Relation { abstract class Doctrine_Relation {
/** /**
......
...@@ -25,9 +25,13 @@ Doctrine::autoload('Doctrine_Relation'); ...@@ -25,9 +25,13 @@ Doctrine::autoload('Doctrine_Relation');
* which holds 2 foreign keys) * which holds 2 foreign keys)
* *
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Relation_Association extends Doctrine_Relation { class Doctrine_Relation_Association extends Doctrine_Relation {
/** /**
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Relation_Association'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Relation_Association');
/** /**
* Doctrine_Relation_Association_Self * Doctrine_Relation_Association_Self
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Relation_Association_Self extends Doctrine_Relation_Association { class Doctrine_Relation_Association_Self extends Doctrine_Relation_Association {
/** /**
......
...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Relation'); ...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Relation');
* Doctrine_Relation_ForeignKey * Doctrine_Relation_ForeignKey
* This class represents a foreign key relation * This class represents a foreign key relation
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Relation_ForeignKey extends Doctrine_Relation { class Doctrine_Relation_ForeignKey extends Doctrine_Relation {
/** /**
......
...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Relation'); ...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Relation');
* Doctrine_Relation_LocalKey * Doctrine_Relation_LocalKey
* This class represents a local key relation * This class represents a local key relation
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Relation_LocalKey extends Doctrine_Relation { class Doctrine_Relation_LocalKey extends Doctrine_Relation {
/** /**
......
...@@ -25,13 +25,16 @@ ...@@ -25,13 +25,16 @@
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/
/** /**
* class Doctrine_Schema * class Doctrine_Schema
* Holds information on one to many databases * Holds information on one to many databases
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Schema extends Doctrine_Schema_Object implements Countable, IteratorAggregate { class Doctrine_Schema extends Doctrine_Schema_Object implements Countable, IteratorAggregate {
/** /**
......
...@@ -26,12 +26,16 @@ Doctrine::autoload('Doctrine_Schema_Object'); ...@@ -26,12 +26,16 @@ Doctrine::autoload('Doctrine_Schema_Object');
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/ */
/** /**
* class Doctrine_Schema_Column * class Doctrine_Schema_Column
* Holds information on a database table field * Holds information on a database table field
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Schema_Column extends Doctrine_Schema_Object implements IteratorAggregate { class Doctrine_Schema_Column extends Doctrine_Schema_Object implements IteratorAggregate {
/** /**
......
...@@ -26,11 +26,16 @@ Doctrine::autoload('Doctrine_Schema_Object'); ...@@ -26,11 +26,16 @@ Doctrine::autoload('Doctrine_Schema_Object');
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/ */
/** /**
* class Doctrine_Schema_Database * class Doctrine_Schema_Database
* Holds information on a database * Holds information on a database
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Schema_Database extends Doctrine_Schema_Object { class Doctrine_Schema_Database extends Doctrine_Schema_Object {
......
...@@ -26,10 +26,14 @@ Doctrine::autoload('Doctrine_Exception'); ...@@ -26,10 +26,14 @@ Doctrine::autoload('Doctrine_Exception');
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/ */
/** /**
* class Doctrine_Schema_Exception * class Doctrine_Schema_Exception
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Schema_Exception extends Exception { } class Doctrine_Schema_Exception extends Exception { }
...@@ -27,10 +27,16 @@ Doctrine::autoload('Doctrine_Access'); ...@@ -27,10 +27,16 @@ Doctrine::autoload('Doctrine_Access');
* @author Konsta Vesterinen * @author Konsta Vesterinen
* @version $Id$ * @version $Id$
*/ */
/** /**
* class Doctrine_Schema_Object * class Doctrine_Schema_Object
* Catches any non-property call from child classes and throws an exception. * Catches any non-property call from child classes and throws an exception.
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
abstract class Doctrine_Schema_Object extends Doctrine_Access implements IteratorAggregate, Countable { abstract class Doctrine_Schema_Object extends Doctrine_Access implements IteratorAggregate, Countable {
......
...@@ -26,12 +26,16 @@ Doctrine::autoload('Doctrine_Schema_Object'); ...@@ -26,12 +26,16 @@ Doctrine::autoload('Doctrine_Schema_Object');
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/ */
/** /**
* class Doctrine_Schema_Relation * class Doctrine_Schema_Relation
* Holds information on a foreign key relation. * Holds information on a foreign key relation.
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Schema_Relation extends Doctrine_Schema_Object { class Doctrine_Schema_Relation extends Doctrine_Schema_Object {
......
...@@ -26,12 +26,16 @@ Doctrine::autoload('Doctrine_Schema_Object'); ...@@ -26,12 +26,16 @@ Doctrine::autoload('Doctrine_Schema_Object');
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> * @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
* @version $Id$ * @version $Id$
*/ */
/** /**
* class Doctrine_Schema_Table * class Doctrine_Schema_Table
* Holds information on a database table * Holds information on a database table
* @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Schema_Table extends Doctrine_Schema_Object implements Countable, IteratorAggregate { class Doctrine_Schema_Table extends Doctrine_Schema_Object implements Countable, IteratorAggregate {
......
...@@ -18,17 +18,18 @@ ...@@ -18,17 +18,18 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Table represents a database table * Doctrine_Table represents a database table
* each Doctrine_Table holds the information of foreignKeys and associations * each Doctrine_Table holds the information of foreignKeys and associations
* *
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @version $Revision$
* @version 1.0 alpha * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/ */
class Doctrine_Table extends Doctrine_Configurable implements Countable { class Doctrine_Table extends Doctrine_Configurable implements Countable {
/** /**
......
...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Exception'); ...@@ -23,9 +23,13 @@ Doctrine::autoload('Doctrine_Exception');
* thrown when user tries to initialize a new instance of Doctrine_Table, * thrown when user tries to initialize a new instance of Doctrine_Table,
* while there already exists an instance of that table * while there already exists an instance of that table
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Table_Exception extends Doctrine_Exception { class Doctrine_Table_Exception extends Doctrine_Exception {
public function __construct($message = "Couldn't initialize table. One instance of this public function __construct($message = "Couldn't initialize table. One instance of this
......
...@@ -23,10 +23,13 @@ ...@@ -23,10 +23,13 @@
* each record is added into Doctrine_Repository at the same time they are created, * each record is added into Doctrine_Repository at the same time they are created,
* loaded from the database or retrieved from the cache * loaded from the database or retrieved from the cache
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Table_Repository implements Countable, IteratorAggregate { class Doctrine_Table_Repository implements Countable, IteratorAggregate {
/** /**
......
...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception'); ...@@ -22,8 +22,12 @@ Doctrine::autoload('Doctrine_Exception');
/** /**
* Doctrine_Table_Repository_Exception * Doctrine_Table_Repository_Exception
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Table_Repository_Exception extends Doctrine_Exception { } class Doctrine_Table_Repository_Exception extends Doctrine_Exception { }
...@@ -22,9 +22,13 @@ ...@@ -22,9 +22,13 @@
* Doctrine_Validator * Doctrine_Validator
* Doctrine_Validator performs validations in record properties * Doctrine_Validator performs validations in record properties
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_Validator { class Doctrine_Validator {
/** /**
......
...@@ -18,14 +18,17 @@ ...@@ -18,14 +18,17 @@
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
/** /**
* Doctrine_Validator_ErrorStack * Doctrine_Validator_ErrorStack
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Roman Borschel * @author Roman Borschel
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Validator_ErrorStack extends Doctrine_Access implements Countable, IteratorAggregate { class Doctrine_Validator_ErrorStack extends Doctrine_Access implements Countable, IteratorAggregate {
......
...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Exception'); ...@@ -22,9 +22,13 @@ Doctrine::autoload('Doctrine_Exception');
/** /**
* Doctrine_Validator_Exception * Doctrine_Validator_Exception
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @license LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_Validator_Exception extends Doctrine_Exception implements Countable, IteratorAggregate { class Doctrine_Validator_Exception extends Doctrine_Exception implements Countable, IteratorAggregate {
/** /**
......
...@@ -25,9 +25,13 @@ Doctrine::autoload('Doctrine_Access'); ...@@ -25,9 +25,13 @@ Doctrine::autoload('Doctrine_Access');
* intend to save / delete the object. * intend to save / delete the object.
* *
* *
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
*/ */
class Doctrine_ValueHolder extends Doctrine_Access implements Countable { class Doctrine_ValueHolder extends Doctrine_Access implements Countable {
......
...@@ -23,10 +23,13 @@ ...@@ -23,10 +23,13 @@
* *
* this class represents a database view * this class represents a database view
* *
* @author Konsta Vesterinen * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @package Doctrine ORM * @package Doctrine
* @url www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @license LGPL * @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision$
*/ */
class Doctrine_View { class Doctrine_View {
/** /**
......
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