-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the new aggregate function definitions final.
- Loading branch information
Showing
5 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
* @since 2.6 | ||
* @author Mathew Davies <[email protected]> | ||
*/ | ||
class AvgFunction extends FunctionNode | ||
final class AvgFunction extends FunctionNode | ||
{ | ||
/** | ||
* @var AggregateExpression | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
* @since 2.6 | ||
* @author Mathew Davies <[email protected]> | ||
*/ | ||
class CountFunction extends FunctionNode | ||
final class CountFunction extends FunctionNode | ||
{ | ||
/** | ||
* @var AggregateExpression | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
* @since 2.6 | ||
* @author Mathew Davies <[email protected]> | ||
*/ | ||
class MaxFunction extends FunctionNode | ||
final class MaxFunction extends FunctionNode | ||
{ | ||
/** | ||
* @var AggregateExpression | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
* @since 2.6 | ||
* @author Mathew Davies <[email protected]> | ||
*/ | ||
class MinFunction extends FunctionNode | ||
final class MinFunction extends FunctionNode | ||
{ | ||
/** | ||
* @var AggregateExpression | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
* @since 2.6 | ||
* @author Mathew Davies <[email protected]> | ||
*/ | ||
class SumFunction extends FunctionNode | ||
final class SumFunction extends FunctionNode | ||
{ | ||
/** | ||
* @var AggregateExpression | ||
|