mirror of
https://github.com/danog/psalm.git
synced 2025-01-22 05:41:20 +01:00
Fix algebra more
This commit is contained in:
parent
4f60d2dd4d
commit
3a8b8e5c2a
@ -69,7 +69,7 @@ class IfScope
|
||||
* statement, if the `if` statement contains branches with leaving statements,
|
||||
* and the else leaves too
|
||||
*
|
||||
* @var array<int, Clause>
|
||||
* @var list<Clause>
|
||||
*/
|
||||
public $reasonable_clauses = [];
|
||||
|
||||
|
@ -78,7 +78,7 @@ class Algebra
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<int, Clause>
|
||||
* @return list<Clause>
|
||||
*/
|
||||
public static function getFormula(
|
||||
int $conditional_object_id,
|
||||
@ -677,10 +677,10 @@ class Algebra
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<int, Clause> $left_clauses
|
||||
* @param array<int, Clause> $right_clauses
|
||||
* @param list<Clause> $left_clauses
|
||||
* @param list<Clause> $right_clauses
|
||||
*
|
||||
* @return array<int, Clause>
|
||||
* @return list<Clause>
|
||||
*
|
||||
* @psalm-pure
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user