Skip to content

Commit 62c791a

Browse files
author
Phalcon
committed
Merge pull request #3026 from dugwood/patch-3
getSqlExpression() should not be final
2 parents 1fe4c80 + 0cf33a8 commit 62c791a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phalcon/db/dialect.zep

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ abstract class Dialect
112112
* @param string escapeChar
113113
* @return string
114114
*/
115-
public final function getSqlExpression(array! expression, var escapeChar = null) -> string
115+
public function getSqlExpression(array! expression, var escapeChar = null) -> string
116116
{
117117
var type, domain, operator, left, right, name, sqlItems,
118118
escapedName, sqlArguments, arguments, argument, item;

0 commit comments

Comments
 (0)