Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
32d21879
Commit
32d21879
authored
Sep 05, 2009
by
guilhermeblanco
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Added some missing headers in some classes. Added API docs for Expr class
parent
a8e39406
Changes
13
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
465 additions
and
71 deletions
+465
-71
Expr.php
lib/Doctrine/ORM/Query/Expr.php
+381
-6
Andx.php
lib/Doctrine/ORM/Query/Expr/Andx.php
+7
-6
Base.php
lib/Doctrine/ORM/Query/Expr/Base.php
+7
-6
Comparison.php
lib/Doctrine/ORM/Query/Expr/Comparison.php
+7
-5
From.php
lib/Doctrine/ORM/Query/Expr/From.php
+7
-5
Func.php
lib/Doctrine/ORM/Query/Expr/Func.php
+7
-5
GroupBy.php
lib/Doctrine/ORM/Query/Expr/GroupBy.php
+7
-6
Join.php
lib/Doctrine/ORM/Query/Expr/Join.php
+7
-5
Math.php
lib/Doctrine/ORM/Query/Expr/Math.php
+7
-5
OrderBy.php
lib/Doctrine/ORM/Query/Expr/OrderBy.php
+7
-6
Orx.php
lib/Doctrine/ORM/Query/Expr/Orx.php
+7
-6
Select.php
lib/Doctrine/ORM/Query/Expr/Select.php
+7
-6
SchemaTool.php
lib/Doctrine/ORM/Tools/SchemaTool.php
+7
-4
No files found.
lib/Doctrine/ORM/Query/Expr.php
View file @
32d21879
This diff is collapsed.
Click to expand it.
lib/Doctrine/ORM/Query/Expr/Andx.php
View file @
32d21879
...
...
@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/**
* 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
* @link http://www.phpdoctrine.org
* @since 2.0
* @version $Revision$
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @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
Andx
extends
Base
{
...
...
lib/Doctrine/ORM/Query/Expr/Base.php
View file @
32d21879
...
...
@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/**
* 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
* @link http://www.phpdoctrine.org
* @since 2.0
* @version $Revision$
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @since 2.0
* @version $Revision$
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/
abstract
class
Base
{
...
...
lib/Doctrine/ORM/Query/Expr/Comparison.php
View file @
32d21879
...
...
@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/**
* Expression class for DQL comparison expressions
*
* @author Jonathan H. Wage <jonwage@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org
* @since 2.0
* @version $Revision$
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @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
Comparison
{
...
...
lib/Doctrine/ORM/Query/Expr/From.php
View file @
32d21879
...
...
@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/**
* Expression class for DQL from
*
* @author Jonathan H. Wage <jonwage@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org
* @since 2.0
* @version $Revision$
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @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
From
{
...
...
lib/Doctrine/ORM/Query/Expr/Func.php
View file @
32d21879
...
...
@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/**
* Expression class for generating DQL functions
*
* @author Jonathan H. Wage <jonwage@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org
* @since 2.0
* @version $Revision$
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @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
Func
{
...
...
lib/Doctrine/ORM/Query/Expr/GroupBy.php
View file @
32d21879
...
...
@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/**
* 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
* @link http://www.phpdoctrine.org
* @since 2.0
* @version $Revision$
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @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
GroupBy
extends
Base
{
...
...
lib/Doctrine/ORM/Query/Expr/Join.php
View file @
32d21879
...
...
@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/**
* Expression class for DQL from
*
* @author Jonathan H. Wage <jonwage@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org
* @since 2.0
* @version $Revision$
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @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
Join
{
...
...
lib/Doctrine/ORM/Query/Expr/Math.php
View file @
32d21879
...
...
@@ -24,11 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/**
* Expression class for DQL math statements
*
* @author Jonathan H. Wage <jonwage@gmail.com>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://www.phpdoctrine.org
* @since 2.0
* @version $Revision$
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @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
Math
{
...
...
lib/Doctrine/ORM/Query/Expr/OrderBy.php
View file @
32d21879
...
...
@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/**
* 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
* @link http://www.phpdoctrine.org
* @since 2.0
* @version $Revision$
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @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
OrderBy
{
...
...
lib/Doctrine/ORM/Query/Expr/Orx.php
View file @
32d21879
...
...
@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/**
* 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
* @link http://www.phpdoctrine.org
* @since 2.0
* @version $Revision$
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @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
Orx
extends
Base
{
...
...
lib/Doctrine/ORM/Query/Expr/Select.php
View file @
32d21879
...
...
@@ -24,12 +24,13 @@ namespace Doctrine\ORM\Query\Expr;
/**
* 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
* @link http://www.phpdoctrine.org
* @since 2.0
* @version $Revision$
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @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
Select
extends
Base
{
...
...
lib/Doctrine/ORM/Tools/SchemaTool.php
View file @
32d21879
...
...
@@ -29,10 +29,13 @@ use Doctrine\DBAL\Types\Type,
* The SchemaTool is a tool to create/drop/update database schemas based on
* <tt>ClassMetadata</tt> class descriptors.
*
* @author Roman Borschel <roman@code-factory.org>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @since 2.0
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment