Skip to content

Commit 52c899a

Browse files
committed
fix code style
1 parent 88b6571 commit 52c899a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Tests/Console/Descriptor/AbstractDescriptorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ private function getEventDispatcherDescriptionTestData(array $objects)
289289
}
290290

291291
/** @dataProvider getDescribeContainerBuilderWithPriorityTagsTestData */
292-
public function testDescribeContainerBuilderWithPriorityTags(ContainerBuilder $builder, $expectedDescription, array $options): void
292+
public function testDescribeContainerBuilderWithPriorityTags(ContainerBuilder $builder, $expectedDescription, array $options)
293293
{
294294
$this->assertDescription($expectedDescription, $builder, $options);
295295
}

Tests/DependencyInjection/Fixtures/php/workflows.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
'initial_marking' => ['draft'],
1313
'metadata' => [
1414
'title' => 'article workflow',
15-
'description' => 'workflow for articles'
15+
'description' => 'workflow for articles',
1616
],
1717
'places' => [
1818
'draft',

Tests/DependencyInjection/FrameworkExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1641,7 +1641,7 @@ public function provideMailer(): array
16411641
/**
16421642
* @dataProvider provideMailer
16431643
*/
1644-
public function testMailer(string $configFile, array $expectedTransports): void
1644+
public function testMailer(string $configFile, array $expectedTransports)
16451645
{
16461646
$container = $this->createContainerFromFile($configFile);
16471647

Tests/Fixtures/ClassAliasExampleClass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class_alias(
66
ClassAliasTargetClass::class,
7-
__NAMESPACE__ . '\ClassAliasExampleClass'
7+
__NAMESPACE__.'\ClassAliasExampleClass'
88
);
99

1010
if (false) {

Tests/Fixtures/Validation/Category.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class Category
88
{
9-
const NAME_PATTERN = '/\w+/';
9+
public const NAME_PATTERN = '/\w+/';
1010

1111
public $id;
1212

0 commit comments

Comments
 (0)