From 5777d02fedc621215b994499f1b9aee9ad437e42 Mon Sep 17 00:00:00 2001 From: orklah Date: Sun, 26 Sep 2021 21:53:43 +0200 Subject: [PATCH] missing types --- .../Internal/Scanner/UnresolvedConstant/UnresolvedTernary.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Psalm/Internal/Scanner/UnresolvedConstant/UnresolvedTernary.php b/src/Psalm/Internal/Scanner/UnresolvedConstant/UnresolvedTernary.php index 0a675617b..f9618f0ff 100644 --- a/src/Psalm/Internal/Scanner/UnresolvedConstant/UnresolvedTernary.php +++ b/src/Psalm/Internal/Scanner/UnresolvedConstant/UnresolvedTernary.php @@ -9,8 +9,11 @@ use Psalm\Internal\Scanner\UnresolvedConstantComponent; */ class UnresolvedTernary extends UnresolvedConstantComponent { + /** @var UnresolvedConstantComponent */ public $cond; + /** @var UnresolvedConstantComponent|null */ public $if; + /** @var UnresolvedConstantComponent */ public $else; public function __construct(