Skip to content

Commit 8e08191

Browse files
Various CS fix for consistency
1 parent 92db4a7 commit 8e08191

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tests/Fixtures/config/closure.php

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

33
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
44

5-
return new class() {
5+
return new class {
66
public function __invoke(ContainerConfigurator $c)
77
{
88
$c->services()

Tests/Fixtures/config/from_callable.php

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

33
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
44

5-
return new class() {
5+
return new class {
66
public function __invoke(ContainerConfigurator $c)
77
{
88
$c->services()

Tests/Fixtures/config/object.php

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

55
use App\BarService;
66

7-
return new class() {
7+
return new class {
88
public function __invoke(ContainerConfigurator $c)
99
{
1010
$s = $c->services()->defaults()->public();

0 commit comments

Comments
 (0)