summaryrefslogtreecommitdiff
path: root/framework/Data/SqlMap
diff options
context:
space:
mode:
authorgodzilla80@gmx.net <>2009-03-19 22:07:39 +0000
committergodzilla80@gmx.net <>2009-03-19 22:07:39 +0000
commitd634db87d432c87a092f1c4cee69a56914cbaa97 (patch)
tree2a681041b70b22b61f3325725d663d62f8338e50 /framework/Data/SqlMap
parentde021710e1c0dae732e61ecb42a9ac60440f55ee (diff)
replace array_push() function calls with native language constuct if make sense
Diffstat (limited to 'framework/Data/SqlMap')
-rw-r--r--framework/Data/SqlMap/Statements/TMappedStatement.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Data/SqlMap/Statements/TMappedStatement.php b/framework/Data/SqlMap/Statements/TMappedStatement.php
index 6b11b107..c4bb53dd 100644
--- a/framework/Data/SqlMap/Statements/TMappedStatement.php
+++ b/framework/Data/SqlMap/Statements/TMappedStatement.php
@@ -869,7 +869,7 @@ class TMappedStatement extends TComponent implements IMappedStatement
$postSelect->setMethod(self::QUERY_FOR_OBJECT);
if(!$property->getLazyLoad())
- array_push($this->_selectQueque, $postSelect);
+ $this->_selectQueque[] = $postSelect;
}
/**