Commit 32d21879 authored by guilhermeblanco's avatar guilhermeblanco

[2.0] Added some missing headers in some classes. Added API docs for Expr class

parent a8e39406
This diff is collapsed.
...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr; ...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/** /**
* Expression class for building DQL and parts * Expression class for building DQL and parts
* *
* @author Jonathan H. Wage <jonwage@gmail.com>
* @author Guilherme Blanco <guilhermeblanco@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
class Andx extends Base class Andx extends Base
{ {
......
...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr; ...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/** /**
* Abstract base Expr class for building DQL parts * Abstract base Expr class for building DQL parts
* *
* @author Jonathan H. Wage <jonwage@gmail.com>
* @author Guilherme Blanco <guilhermeblanco@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
abstract class Base abstract class Base
{ {
......
...@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr; ...@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/** /**
* Expression class for DQL comparison expressions * Expression class for DQL comparison expressions
* *
* @author Jonathan H. Wage <jonwage@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
class Comparison class Comparison
{ {
......
...@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr; ...@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/** /**
* Expression class for DQL from * Expression class for DQL from
* *
* @author Jonathan H. Wage <jonwage@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
class From class From
{ {
......
...@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr; ...@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/** /**
* Expression class for generating DQL functions * Expression class for generating DQL functions
* *
* @author Jonathan H. Wage <jonwage@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
class Func class Func
{ {
......
...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr; ...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/** /**
* Expression class for building DQL Group By parts * Expression class for building DQL Group By parts
* *
* @author Jonathan H. Wage <jonwage@gmail.com>
* @author Guilherme Blanco <guilhermeblanco@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
class GroupBy extends Base class GroupBy extends Base
{ {
......
...@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr; ...@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/** /**
* Expression class for DQL from * Expression class for DQL from
* *
* @author Jonathan H. Wage <jonwage@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
class Join class Join
{ {
......
...@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr; ...@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/** /**
* Expression class for DQL math statements * Expression class for DQL math statements
* *
* @author Jonathan H. Wage <jonwage@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
class Math class Math
{ {
......
...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr; ...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/** /**
* Expression class for building DQL Order By parts * Expression class for building DQL Order By parts
* *
* @author Jonathan H. Wage <jonwage@gmail.com>
* @author Guilherme Blanco <guilhermeblanco@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
class OrderBy class OrderBy
{ {
......
...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr; ...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/** /**
* Expression class for building DQL OR clauses * Expression class for building DQL OR clauses
* *
* @author Jonathan H. Wage <jonwage@gmail.com>
* @author Guilherme Blanco <guilhermeblanco@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
class Orx extends Base class Orx extends Base
{ {
......
...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr; ...@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/** /**
* Expression class for building DQL select statements * Expression class for building DQL select statements
* *
* @author Jonathan H. Wage <jonwage@gmail.com>
* @author Guilherme Blanco <guilhermeblanco@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$ * @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
class Select extends Base class Select extends Base
{ {
......
...@@ -29,10 +29,13 @@ use Doctrine\DBAL\Types\Type, ...@@ -29,10 +29,13 @@ use Doctrine\DBAL\Types\Type,
* The SchemaTool is a tool to create/drop/update database schemas based on * The SchemaTool is a tool to create/drop/update database schemas based on
* <tt>ClassMetadata</tt> class descriptors. * <tt>ClassMetadata</tt> class descriptors.
* *
* @author Roman Borschel <roman@code-factory.org>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/ */
class SchemaTool class SchemaTool
{ {
......
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