Skip to content

Commit

Permalink
bug: Fix type error when using paths intersection mode (#6734)
Browse files Browse the repository at this point in the history
  • Loading branch information
julienfalque authored and keradus committed Jan 2, 2023
1 parent 5120e61 commit 936edf0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/Console/Command/FixCommand.php
Expand Up @@ -272,7 +272,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
}

$progressType = $resolver->getProgress();
$finder = $resolver->getFinder();
$finder = new \ArrayIterator(iterator_to_array($resolver->getFinder()));

if (null !== $stdErr && $resolver->configFinderIsOverridden()) {
$stdErr->writeln(
Expand All @@ -283,7 +283,6 @@ protected function execute(InputInterface $input, OutputInterface $output): int
if ('none' === $progressType || null === $stdErr) {
$progressOutput = new NullOutput();
} else {
$finder = new \ArrayIterator(iterator_to_array($finder));
$progressOutput = new ProcessOutput(
$stdErr,
$this->eventDispatcher,
Expand Down
16 changes: 15 additions & 1 deletion tests/Console/Command/FixCommandTest.php
Expand Up @@ -19,6 +19,7 @@
use PhpCsFixer\Console\Command\FixCommand;
use PhpCsFixer\Tests\TestCase;
use PhpCsFixer\ToolInfo;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Tester\CommandTester;

Expand All @@ -29,6 +30,19 @@
*/
final class FixCommandTest extends TestCase
{
public function testIntersectionPathMode(): void
{
$cmdTester = $this->doTestExecute([
'--path-mode' => 'intersection',
'--show-progress' => 'none',
]);

static::assertSame(
Command::SUCCESS,
$cmdTester->getStatusCode()
);
}

public function testEmptyRulesValue(): void
{
$this->expectException(
Expand Down Expand Up @@ -93,7 +107,7 @@ private function getDefaultArguments(): array
return [
'path' => [__FILE__],
'--path-mode' => 'override',
'--allow-risky' => true,
'--allow-risky' => 'yes',
'--dry-run' => true,
'--using-cache' => 'no',
'--show-progress' => 'none',
Expand Down

0 comments on commit 936edf0

Please sign in to comment.