Skip to content

Commit

Permalink
Fix tyephint on SelectStatement::$expr.
Browse files Browse the repository at this point in the history
  • Loading branch information
niconoe- committed Sep 11, 2024
1 parent 91d980a commit 3975930
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Statements/SelectStatement.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
namespace PhpMyAdmin\SqlParser\Statements;

use PhpMyAdmin\SqlParser\Components\ArrayObj;
use PhpMyAdmin\SqlParser\Components\CaseExpression;
use PhpMyAdmin\SqlParser\Components\Condition;
use PhpMyAdmin\SqlParser\Components\Expression;
use PhpMyAdmin\SqlParser\Components\FunctionCall;
Expand Down Expand Up @@ -234,7 +235,7 @@ class SelectStatement extends Statement
/**
* Expressions that are being selected by this statement.
*
* @var Expression[]
* @var (CaseExpression|Expression)[]
*/
public $expr = [];

Expand Down

0 comments on commit 3975930

Please sign in to comment.