Skip to content

Commit 983ad12

Browse files
committed
fixing
1 parent 91a71d3 commit 983ad12

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/PseudoTypes/AbstractConditional.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@
2525
abstract class AbstractConditional extends Mixed_ implements PseudoType
2626
{
2727
/** @var Type */
28-
private $target;
28+
protected $target;
2929

3030
/** @var Type */
31-
private $if;
31+
protected $if;
3232

3333
/** @var Type */
34-
private $else;
34+
protected $else;
3535

3636
/** @var bool */
37-
private $negated;
37+
protected $negated;
3838

3939
public function __construct(Type $target, Type $if, Type $else, bool $negated)
4040
{

src/PseudoTypes/PropertiesOf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
class PropertiesOf extends Array_ implements PseudoType
2323
{
2424
/** @var Fqsen|null */
25-
private $fqsen;
25+
protected $fqsen;
2626

2727
/**
2828
* Initializes this representation of a class string with the given Fqsen.

0 commit comments

Comments
 (0)