Skip to content

Commit

Permalink
Merge branch '10.5' into 11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Apr 2, 2024
2 parents 794887d + b24c32d commit 256749f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 1 addition & 9 deletions .psalm/baseline.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<files psalm-version="5.23.0@005e3184fb6de4350a873b9b8c4dc3cede9db762">
<files psalm-version="5.23.1@8471a896ccea3526b26d082f4461eeea467f10a4">
<file src="src/Event/Dispatcher/DirectDispatcher.php">
<UndefinedInterfaceMethod>
<code><![CDATA[notify]]></code>
Expand Down Expand Up @@ -395,14 +395,6 @@
<ArgumentTypeCoercion>
<code><![CDATA[$this->name]]></code>
</ArgumentTypeCoercion>
<LessSpecificReturnStatement>
<code><![CDATA[$this->providedTests]]></code>
<code><![CDATA[$this->requiredTests]]></code>
</LessSpecificReturnStatement>
<MoreSpecificReturnType>
<code><![CDATA[list<ExecutionOrderDependency>]]></code>
<code><![CDATA[list<ExecutionOrderDependency>]]></code>
</MoreSpecificReturnType>
</file>
<file src="src/Logging/JUnit/JunitXmlLogger.php">
<InvalidPropertyAssignmentValue>
Expand Down
12 changes: 10 additions & 2 deletions src/Framework/TestSuite.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,21 @@ class TestSuite implements IteratorAggregate, Reorderable, SelfDescribing, Test
/**
* @psalm-var array<string,list<Test>>
*/
private array $groups = [];
private array $groups = [];

/**
* @psalm-var ?list<ExecutionOrderDependency>
*/
private ?array $requiredTests = null;

/**
* @psalm-var list<Test>
*/
private array $tests = [];
private array $tests = [];

/**
* @psalm-var ?list<ExecutionOrderDependency>
*/
private ?array $providedTests = null;
private ?Factory $iteratorFilter = null;

Expand Down

0 comments on commit 256749f

Please sign in to comment.