Skip to content

Commit

Permalink
php-cs-fixer it up
Browse files Browse the repository at this point in the history
  • Loading branch information
jrushlow committed May 14, 2024
1 parent 8521b45 commit e9ee254
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Maker/MakeVoterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function getTestDetails(): \Generator
]
);

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

self::assertSame(file_get_contents($expectedVoterPath), file_get_contents($generatedVoter));
Expand All @@ -55,7 +55,7 @@ public function getTestDetails(): \Generator
]
);

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

self::assertSame(file_get_contents($expectedVoterPath), file_get_contents($generatedVoter));
Expand Down

0 comments on commit e9ee254

Please sign in to comment.