Skip to content

Commit e9ee254

Browse files
committed
php-cs-fixer it up
1 parent 8521b45 commit e9ee254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Maker/MakeVoterTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function getTestDetails(): \Generator
3434
]
3535
);
3636

37-
$expectedVoterPath = dirname(__DIR__).'/fixtures/make-voter/expected/FooBarVoter.php';
37+
$expectedVoterPath = \dirname(__DIR__).'/fixtures/make-voter/expected/FooBarVoter.php';
3838
$generatedVoter = $runner->getPath('src/Security/Voter/FooBarVoter.php');
3939

4040
self::assertSame(file_get_contents($expectedVoterPath), file_get_contents($generatedVoter));
@@ -55,7 +55,7 @@ public function getTestDetails(): \Generator
5555
]
5656
);
5757

58-
$expectedVoterPath = dirname(__DIR__).'/fixtures/make-voter/expected/final_FooBarVoter.php';
58+
$expectedVoterPath = \dirname(__DIR__).'/fixtures/make-voter/expected/final_FooBarVoter.php';
5959
$generatedVoter = $runner->getPath('src/Security/Voter/FooBarVoter.php');
6060

6161
self::assertSame(file_get_contents($expectedVoterPath), file_get_contents($generatedVoter));

0 commit comments

Comments
 (0)