Skip to content

Commit 2cf8af2

Browse files
committed
Define type for MinimalHelperSet to eliminate some tests
1 parent a7c8328 commit 2cf8af2

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed

src/ComposerIntegration/MinimalHelperSet.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@
88
use Symfony\Component\Console\Helper\QuestionHelper;
99
use Webmozart\Assert\Assert;
1010

11+
/** @internal This is not public API for PIE, so should not be depended upon unless you accept the risk of BC breaks */
1112
class MinimalHelperSet extends HelperSet
1213
{
13-
public function __construct(array $helpers = [])
14+
/** @param array{question: QuestionHelper} $helpers */
15+
public function __construct(array $helpers)
1416
{
1517
Assert::isInstanceOf(
1618
$helpers['question'] ?? null,
1719
QuestionHelper::class,
18-
'The question option must be an instance of %2$s, got %s'
20+
'The question option must be an instance of %2$s, got %s',
1921
);
2022

2123
parent::__construct($helpers);

src/Container.php

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
use Php\Pie\Installing\UnixInstall;
2626
use Php\Pie\Installing\WindowsInstall;
2727
use Psr\Container\ContainerInterface;
28-
use Symfony\Component\Console\Helper\HelperSet;
2928
use Symfony\Component\Console\Helper\QuestionHelper;
3029
use Symfony\Component\Console\Input\ArgvInput;
3130
use Symfony\Component\Console\Input\InputInterface;

test/unit/ComposerIntegration/MinimalHelperSetTest.php

-13
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
use Php\Pie\ComposerIntegration\MinimalHelperSet;
88
use PHPUnit\Framework\Attributes\CoversClass;
99
use PHPUnit\Framework\TestCase;
10-
use stdClass;
1110
use Symfony\Component\Console\Helper\QuestionHelper;
1211

1312
#[CoversClass(MinimalHelperSet::class)]
@@ -18,16 +17,4 @@ public function testHappyPath(): void
1817
$this->expectNotToPerformAssertions();
1918
new MinimalHelperSet(['question' => $this->createMock(QuestionHelper::class)]);
2019
}
21-
22-
public function testQuestionOptionIsMissing(): void
23-
{
24-
$this->expectExceptionMessage('The question option must be an instance of Symfony\Component\Console\Helper\QuestionHelper, got NULL');
25-
new MinimalHelperSet([]);
26-
}
27-
28-
public function testQuestionOptionIsNotAQuestionHelper(): void
29-
{
30-
$this->expectExceptionMessage('The question option must be an instance of Symfony\Component\Console\Helper\QuestionHelper, got stdClass');
31-
new MinimalHelperSet(['question' => new stdClass()]);
32-
}
3320
}

0 commit comments

Comments
 (0)