Skip to content

Commit

Permalink
fix(oracle): no typed properties before PHP 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nxtpge committed Feb 19, 2025
1 parent 992030b commit 1e27c40
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions src/Query/Oracle/Nvl2.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,20 @@
/** @author https://github.com/nxtpge */
class Nvl2 extends FunctionNode
{
private ArithmeticExpression $expr1;

private ArithmeticExpression $expr2;

private ArithmeticExpression $expr3;
/**
* @var ArithmeticExpression
*/
private $expr1;

/**
* @var ArithmeticExpression
*/
private $expr2;

/**
* @var ArithmeticExpression
*/
private $expr3;

public function getSql(SqlWalker $sqlWalker): string
{
Expand Down

0 comments on commit 1e27c40

Please sign in to comment.