Skip to content

Commit a74a766

Browse files
committed
Add missing use statement and simplify the line
1 parent 4b9d6cc commit a74a766

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Resources/skeleton/authenticator/Security52EmptyAuthenticator.tpl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
88
use Symfony\Component\Security\Core\Exception\AuthenticationException;
99
use Symfony\Component\Security\Http\Authenticator\AbstractAuthenticator;
10-
<?= $use_legacy_passport_interface ? 'use Symfony\\Component\\Security\\Http\\Authenticator\\Passport\\PassportInterface;' : 'Symfony\\Component\\Security\\Http\\Authenticator\\Passport\\Passport;' ?><?= PHP_EOL ?>
10+
use <?= $use_legacy_passport_interface ? 'Symfony\\Component\\Security\\Http\\Authenticator\\Passport\\PassportInterface' : 'Symfony\\Component\\Security\\Http\\Authenticator\\Passport\\Passport' ?>;
1111

1212
class <?php echo $class_name ?> extends AbstractAuthenticator
1313
{

0 commit comments

Comments
 (0)