Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5666a0d

Browse filesBrowse files
Fixing coding style
1 parent b978c38 commit 5666a0d
Copy full SHA for 5666a0d

File tree

Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed

‎src/Symfony/Component/AssetMapper/Tests/ImportMap/ImportMapOutdatedCommandTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/AssetMapper/Tests/ImportMap/ImportMapOutdatedCommandTest.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ class ImportMapOutdatedCommandTest extends TestCase
2121
/**
2222
* @dataProvider provideNoOutdatedPackageCases
2323
*/
24-
public function testCommandWhenNoOutdatedPackages(string $display, ?string $format = null): void
24+
public function testCommandWhenNoOutdatedPackages(string $display, ?string $format = null)
2525
{
2626
$updateChecker = $this->createMock(ImportMapUpdateChecker::class);
2727
$command = new ImportMapOutdatedCommand($updateChecker);
2828

2929
$commandTester = new CommandTester($command);
30-
$commandTester->execute(is_string($format) ? ['--format' => $format] : []);
30+
$commandTester->execute(\is_string($format) ? ['--format' => $format] : []);
3131

3232
$commandTester->assertCommandIsSuccessful();
3333
$this->assertEquals($display, trim($commandTester->getDisplay(true)));
@@ -42,4 +42,4 @@ public static function provideNoOutdatedPackageCases(): iterable
4242
yield 'txt' => ['No updates found.', 'txt'];
4343
yield 'json' => ['[]', 'json'];
4444
}
45-
}
45+
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.