Skip to content

Commit

Permalink
Merge pull request #10368 from chinpei215/remove-internal-annotations
Browse files Browse the repository at this point in the history
Remove internal annotations from Cake\Database\Expression classes
  • Loading branch information
lorenzo committed Mar 7, 2017
2 parents 8c94ea3 + 3dbc33d commit b7f4487
Show file tree
Hide file tree
Showing 12 changed files with 0 additions and 24 deletions.
2 changes: 0 additions & 2 deletions src/Database/Expression/BetweenExpression.php
Expand Up @@ -20,8 +20,6 @@

/**
* An expression object that represents a SQL BETWEEN snippet
*
* @internal
*/
class BetweenExpression implements ExpressionInterface, FieldInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Database/Expression/CaseExpression.php
Expand Up @@ -20,8 +20,6 @@

/**
* This class represents a SQL Case statement
*
* @internal
*/
class CaseExpression implements ExpressionInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Database/Expression/Comparison.php
Expand Up @@ -23,8 +23,6 @@
* A Comparison is a type of query expression that represents an operation
* involving a field an operator and a value. In its most common form the
* string representation of a comparison is `field = value`
*
* @internal
*/
class Comparison implements ExpressionInterface, FieldInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Database/Expression/FieldInterface.php
Expand Up @@ -17,8 +17,6 @@
/**
* Describes a getter and a setter for the a field property. Useful for expressions
* that contain an identifier to compare against.
*
* @internal
*/
interface FieldInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Database/Expression/FieldTrait.php
Expand Up @@ -16,8 +16,6 @@

/**
* Contains the field property with a getter and a setter for it
*
* @internal
*/
trait FieldTrait
{
Expand Down
2 changes: 0 additions & 2 deletions src/Database/Expression/FunctionExpression.php
Expand Up @@ -25,8 +25,6 @@
* constructed by passing the name of the function and a list of params.
* For security reasons, all params passed are quoted by default unless
* explicitly told otherwise.
*
* @internal
*/
class FunctionExpression extends QueryExpression implements TypedResultInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Database/Expression/IdentifierExpression.php
Expand Up @@ -19,8 +19,6 @@

/**
* Represents a single identifier name in the database
*
* @internal
*/
class IdentifierExpression implements ExpressionInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Database/Expression/OrderByExpression.php
Expand Up @@ -19,8 +19,6 @@

/**
* An expression object for ORDER BY clauses
*
* @internal
*/
class OrderByExpression extends QueryExpression
{
Expand Down
2 changes: 0 additions & 2 deletions src/Database/Expression/OrderClauseExpression.php
Expand Up @@ -19,8 +19,6 @@

/**
* An expression object for complex ORDER BY clauses
*
* @internal
*/
class OrderClauseExpression implements ExpressionInterface, FieldInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Database/Expression/TupleComparison.php
Expand Up @@ -20,8 +20,6 @@
/**
* This expression represents SQL fragments that are used for comparing one tuple
* to another, one tuple to a set of other tuples or one tuple to an expression
*
* @internal
*/
class TupleComparison extends Comparison
{
Expand Down
2 changes: 0 additions & 2 deletions src/Database/Expression/UnaryExpression.php
Expand Up @@ -19,8 +19,6 @@

/**
* An expression object that represents an expression with only a single operand.
*
* @internal
*/
class UnaryExpression implements ExpressionInterface
{
Expand Down
2 changes: 0 additions & 2 deletions src/Database/Expression/ValuesExpression.php
Expand Up @@ -26,8 +26,6 @@
*
* Helps generate SQL with the correct number of placeholders and bind
* values correctly into the statement.
*
* @internal
*/
class ValuesExpression implements ExpressionInterface
{
Expand Down

0 comments on commit b7f4487

Please sign in to comment.