Revert "FIX make augmentSQL API consistent for strict PHP"

This reverts commit ab40dcc0ca.
This commit is contained in:
Sean Harvey 2013-06-01 11:50:23 +12:00
parent f5b6c55245
commit 1cebfc5d51
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ abstract class DataExtension extends Extension {
* *
* @param SQLQuery $query Query to augment. * @param SQLQuery $query Query to augment.
*/ */
public function augmentSQL(SQLQuery &$query, DataQuery &$dataQuery = null) { public function augmentSQL(SQLQuery &$query) {
} }
/** /**

View File

@ -38,7 +38,7 @@ class Hierarchy extends DataExtension {
*/ */
private static $node_threshold_leaf = 250; private static $node_threshold_leaf = 250;
public function augmentSQL(SQLQuery &$query, DataQuery &$dataQuery = null) { public function augmentSQL(SQLQuery &$query) {
} }
public function augmentDatabase() { public function augmentDatabase() {