Skip to content

Commit

Permalink
Make the new aggregate function definitions final.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathew Davies authored and lcobucci committed Jun 20, 2017
1 parent 05758f4 commit 747c185
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/Doctrine/ORM/Query/AST/Functions/AvgFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @since 2.6
* @author Mathew Davies <[email protected]>
*/
class AvgFunction extends FunctionNode
final class AvgFunction extends FunctionNode
{
/**
* @var AggregateExpression
Expand Down
2 changes: 1 addition & 1 deletion lib/Doctrine/ORM/Query/AST/Functions/CountFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @since 2.6
* @author Mathew Davies <[email protected]>
*/
class CountFunction extends FunctionNode
final class CountFunction extends FunctionNode
{
/**
* @var AggregateExpression
Expand Down
2 changes: 1 addition & 1 deletion lib/Doctrine/ORM/Query/AST/Functions/MaxFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @since 2.6
* @author Mathew Davies <[email protected]>
*/
class MaxFunction extends FunctionNode
final class MaxFunction extends FunctionNode
{
/**
* @var AggregateExpression
Expand Down
2 changes: 1 addition & 1 deletion lib/Doctrine/ORM/Query/AST/Functions/MinFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @since 2.6
* @author Mathew Davies <[email protected]>
*/
class MinFunction extends FunctionNode
final class MinFunction extends FunctionNode
{
/**
* @var AggregateExpression
Expand Down
2 changes: 1 addition & 1 deletion lib/Doctrine/ORM/Query/AST/Functions/SumFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @since 2.6
* @author Mathew Davies <[email protected]>
*/
class SumFunction extends FunctionNode
final class SumFunction extends FunctionNode
{
/**
* @var AggregateExpression
Expand Down

0 comments on commit 747c185

Please sign in to comment.