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,10 +21,14 @@ ...@@ -21,10 +21,14 @@
/** /**
* 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,10 +23,14 @@ Doctrine::autoload("Access"); ...@@ -23,10 +23,14 @@ 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 {
/** /**
* @var array $data an array containing the data access objects of this collection * @var array $data an array containing the data access objects of this collection
......
...@@ -24,12 +24,14 @@ Doctrine::autoload('Doctrine_Collection'); ...@@ -24,12 +24,14 @@ 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 {
/** /**
* @var integer $batchSize batch size * @var integer $batchSize batch size
......
...@@ -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 {
/** /**
* @param Doctrine_DQL_Parser $graph * @param Doctrine_DQL_Parser $graph
......
...@@ -22,10 +22,14 @@ ...@@ -22,10 +22,14 @@
* 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 {
/** /**
* @var Doctrine_Collection $collection * @var Doctrine_Collection $collection
......
...@@ -22,10 +22,14 @@ Doctrine::autoload('Doctrine_Collection_Iterator'); ...@@ -22,10 +22,14 @@ 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() {
if($this->index < $this->count) if($this->index < $this->count)
......
...@@ -22,10 +22,14 @@ Doctrine::autoload('Doctrine_Collection_Iterator'); ...@@ -22,10 +22,14 @@ 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 {
/** /**
* @return boolean whether or not the iteration will continue * @return boolean whether or not the iteration will continue
......
...@@ -22,10 +22,14 @@ Doctrine::autoload('Doctrine_Collection_Iterator'); ...@@ -22,10 +22,14 @@ 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,7 +3,14 @@ require_once("Batch.php"); ...@@ -3,7 +3,14 @@ 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 {
/** /**
* constructor * constructor
......
...@@ -23,10 +23,14 @@ Doctrine::autoload('Doctrine_Collection_Offset'); ...@@ -23,10 +23,14 @@ 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 {
/** /**
* @var integer $limit * @var integer $limit
......
...@@ -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,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_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 {
/** /**
* @var $dbh the database handler * @var $dbh the database handler
......
...@@ -2,7 +2,14 @@ ...@@ -2,7 +2,14 @@
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 {
/** /**
* Adds an driver-specific LIMIT clause to the query * Adds an driver-specific LIMIT clause to the query
......
...@@ -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,14 +22,16 @@ Doctrine::autoload('Doctrine_Connection'); ...@@ -22,14 +22,16 @@ 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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
/** /**
* @var string $driverName the name of this connection driver * @var string $driverName the name of this connection driver
......
...@@ -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,10 +22,14 @@ Doctrine::autoload('Doctrine_Connection'); ...@@ -22,10 +22,14 @@ 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 {
/** /**
* @var string $driverName the name of this connection driver * @var string $driverName the name of this connection driver
......
...@@ -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,13 +22,15 @@ Doctrine::autoload('Doctrine_Connection'); ...@@ -22,13 +22,15 @@ 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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
/** /**
* @var string $driverName the name of this connection driver * @var string $driverName the name of this connection driver
......
...@@ -22,14 +22,15 @@ Doctrine::autoload('Doctrine_Connection_Exception'); ...@@ -22,14 +22,15 @@ 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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
/** /**
* @var array $errorRegexps an array that is used for determining portable * @var array $errorRegexps an array that is used for determining portable
......
...@@ -22,13 +22,15 @@ Doctrine::autoload('Doctrine_Connection_Common'); ...@@ -22,13 +22,15 @@ 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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
/** /**
* @var string $driverName the name of this connection driver * @var string $driverName the name of this connection driver
......
...@@ -22,14 +22,15 @@ Doctrine::autoload('Doctrine_Connection_Exception'); ...@@ -22,14 +22,15 @@ 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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
/** /**
* @var array $errorRegexps an array that is used for determining portable * @var array $errorRegexps an array that is used for determining portable
......
...@@ -22,10 +22,14 @@ Doctrine::autoload('Doctrine_Connection'); ...@@ -22,10 +22,14 @@ 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 {
/** /**
* @var string $driverName the name of this connection driver * @var string $driverName the name of this connection driver
......
...@@ -22,14 +22,15 @@ Doctrine::autoload('Doctrine_Connection_Exception'); ...@@ -22,14 +22,15 @@ 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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
/** /**
* @var array $errorRegexps an array that is used for determining portable * @var array $errorRegexps an array that is used for determining portable
......
...@@ -22,13 +22,15 @@ Doctrine::autoload("Doctrine_Connection_Common"); ...@@ -22,13 +22,15 @@ 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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
/** /**
* @var string $driverName the name of this connection driver * @var string $driverName the name of this connection driver
......
...@@ -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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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
......
...@@ -22,14 +22,15 @@ Doctrine::autoload('Doctrine_Connection_Exception'); ...@@ -22,14 +22,15 @@ 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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
/** /**
* @var array $errorRegexps an array that is used for determining portable * @var array $errorRegexps an array that is used for determining portable
......
...@@ -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,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_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 {
/** /**
* @var Doctrine_Connection $conn the connection object * @var Doctrine_Connection $conn the connection object
......
...@@ -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_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 {
protected $dbh; protected $dbh;
......
...@@ -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 { }
...@@ -20,11 +20,13 @@ ...@@ -20,11 +20,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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen * @version $Revision$
* @version $Id$ * @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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 { }
...@@ -20,13 +20,15 @@ ...@@ -20,13 +20,15 @@
*/ */
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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
/** /**
* 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_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,10 +28,14 @@ ...@@ -29,10 +28,14 @@
* 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 {
/** /**
* error constants * error constants
......
...@@ -21,10 +21,14 @@ ...@@ -21,10 +21,14 @@
/** /**
* 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;
const EXEC = 2; const EXEC = 2;
......
...@@ -21,10 +21,14 @@ ...@@ -21,10 +21,14 @@
/** /**
* 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) { }
public function onQuery(Doctrine_Db_Event $event) { } public function onQuery(Doctrine_Db_Event $event) { }
......
...@@ -20,14 +20,17 @@ ...@@ -20,14 +20,17 @@
*/ */
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 { }
...@@ -20,13 +20,15 @@ ...@@ -20,13 +20,15 @@
*/ */
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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
} }
...@@ -20,13 +20,15 @@ ...@@ -20,13 +20,15 @@
*/ */
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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
} }
...@@ -20,13 +20,15 @@ ...@@ -20,13 +20,15 @@
*/ */
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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
} }
...@@ -20,13 +20,15 @@ ...@@ -20,13 +20,15 @@
*/ */
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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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(
1004 => Doctrine_Db::ERR_CANNOT_CREATE, 1004 => Doctrine_Db::ERR_CANNOT_CREATE,
......
...@@ -20,13 +20,15 @@ ...@@ -20,13 +20,15 @@
*/ */
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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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 {
} }
...@@ -20,13 +20,15 @@ ...@@ -20,13 +20,15 @@
*/ */
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 <kvesteri@cc.hut.fi>
* @author Konsta Vesterinen
* @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,10 +22,14 @@ Doctrine::autoload('Doctrine_Overloadable'); ...@@ -22,10 +22,14 @@ 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 {
/** /**
* @param array $listeners an array containing all availible listeners * @param array $listeners an array containing all availible listeners
......
...@@ -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,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_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 {
/** /**
* @var string SQL query string or user comment, set by $query argument in constructor. * @var string SQL query string or user comment, set by $query argument in constructor.
......
...@@ -21,10 +21,14 @@ ...@@ -21,10 +21,14 @@
/** /**
* 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,11 +24,14 @@ Doctrine::autoload('Doctrine_EventListener_Interface'); ...@@ -24,11 +24,14 @@ 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 {
public function onLoad(Doctrine_Record $record) { } public function onLoad(Doctrine_Record $record) { }
......
...@@ -22,11 +22,14 @@ Doctrine::autoload('Doctrine_EventListener'); ...@@ -22,11 +22,14 @@ 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 {
/** /**
* @var boolean $lockGetCall a simple variable to prevent recursion * @var boolean $lockGetCall a simple variable to prevent recursion
......
...@@ -20,17 +20,19 @@ ...@@ -20,17 +20,19 @@
*/ */
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 {
/** /**
* @var array $listeners an array containing all listeners * @var array $listeners an array containing all listeners
......
<?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,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_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 {
/** /**
* @var Doctrine_Connection $conn Doctrine_Connection object * @var Doctrine_Connection $conn Doctrine_Connection object
......
...@@ -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 { }
...@@ -22,11 +22,15 @@ Doctrine::autoload('Doctrine_Export'); ...@@ -22,11 +22,15 @@ 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 {
/** /**
* create a new database * create a new database
......
...@@ -22,11 +22,15 @@ Doctrine::autoload('Doctrine_Export'); ...@@ -22,11 +22,15 @@ 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 {
/** /**
* create a new database * create a new database
......
...@@ -22,11 +22,15 @@ Doctrine::autoload('Doctrine_Export'); ...@@ -22,11 +22,15 @@ 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 {
/** /**
* Get the stucture of a field into an array * Get the stucture of a field into an array
......
...@@ -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_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,10 +22,14 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,10 +22,14 @@ 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 {
/** /**
* return string for internal table used when calling only a function * return string for internal table used when calling only a function
......
...@@ -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,10 +22,14 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,10 +22,14 @@ 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 {
/** /**
* Return string to call a variable with the current timestamp inside an SQL statement * Return string to call a variable with the current timestamp inside an SQL statement
......
...@@ -22,10 +22,14 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,10 +22,14 @@ 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 {
/** /**
* returns the regular expression operator * returns the regular expression operator
......
...@@ -22,10 +22,14 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,10 +22,14 @@ 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 {
/** /**
* Returns a series of strings concatinated * Returns a series of strings concatinated
......
...@@ -22,10 +22,14 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,10 +22,14 @@ 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 {
/** /**
* Returns the md5 sum of a field. * Returns the md5 sum of a field.
......
...@@ -22,10 +22,14 @@ Doctrine::autoload('Doctrine_Expression'); ...@@ -22,10 +22,14 @@ 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 {
/** /**
* Returns the md5 sum of the data that SQLite's md5() function receives. * Returns the md5 sum of the data that SQLite's md5() function receives.
......
...@@ -24,10 +24,14 @@ Doctrine::autoload('Doctrine_Access'); ...@@ -24,10 +24,14 @@ 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 {
/** /**
* @var array $fetchmodes an array containing all fetchmodes * @var array $fetchmodes an array containing all fetchmodes
......
...@@ -18,15 +18,17 @@ ...@@ -18,15 +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_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 {
/** /**
* constant for auto_increment identifier * constant for auto_increment 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,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_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 {
/** /**
* @param integer $state the state of record * @param integer $state the state of record
......
<?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 {
/** /**
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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