Skip to content

Commit 5f1c360

Browse files
committed
[CS] Remove @inheritdoc PHPDoc
1 parent 1ed0e53 commit 5f1c360

23 files changed

+0
-108
lines changed

DataCollector/SecurityDataCollector.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ public function __construct(TokenStorageInterface $tokenStorage = null, RoleHier
5555
$this->hasVarDumper = class_exists(ClassStub::class);
5656
}
5757

58-
/**
59-
* {@inheritdoc}
60-
*/
6158
public function collect(Request $request, Response $response, \Throwable $exception = null)
6259
{
6360
if (null === $this->tokenStorage) {
@@ -205,9 +202,6 @@ public function collect(Request $request, Response $response, \Throwable $except
205202
$this->data['authenticators'] = $this->firewall ? $this->firewall->getAuthenticatorsInfo() : [];
206203
}
207204

208-
/**
209-
* {@inheritdoc}
210-
*/
211205
public function reset()
212206
{
213207
$this->data = [];
@@ -350,9 +344,6 @@ public function getAuthenticators(): array|Data
350344
return $this->data['authenticators'];
351345
}
352346

353-
/**
354-
* {@inheritdoc}
355-
*/
356347
public function getName(): string
357348
{
358349
return 'security';

Debug/WrappedLazyListener.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ public function supports(Request $request): ?bool
3838
return $this->listener->supports($request);
3939
}
4040

41-
/**
42-
* {@inheritdoc}
43-
*/
4441
public function authenticate(RequestEvent $event)
4542
{
4643
$startTime = microtime(true);

DependencyInjection/Compiler/AddExpressionLanguageProvidersPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
*/
2323
class AddExpressionLanguageProvidersPass implements CompilerPassInterface
2424
{
25-
/**
26-
* {@inheritdoc}
27-
*/
2825
public function process(ContainerBuilder $container)
2926
{
3027
if ($container->has('security.expression_language')) {

DependencyInjection/Compiler/AddSecurityVotersPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ class AddSecurityVotersPass implements CompilerPassInterface
2929
{
3030
use PriorityTaggedServiceTrait;
3131

32-
/**
33-
* {@inheritdoc}
34-
*/
3532
public function process(ContainerBuilder $container)
3633
{
3734
if (!$container->hasDefinition('security.access.decision_manager')) {

DependencyInjection/Compiler/AddSessionDomainConstraintPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
*/
2222
class AddSessionDomainConstraintPass implements CompilerPassInterface
2323
{
24-
/**
25-
* {@inheritdoc}
26-
*/
2724
public function process(ContainerBuilder $container)
2825
{
2926
if (!$container->hasParameter('session.storage.options') || !$container->has('security.http_utils')) {

DependencyInjection/Compiler/CleanRememberMeVerifierPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
*/
2222
class CleanRememberMeVerifierPass implements CompilerPassInterface
2323
{
24-
/**
25-
* {@inheritdoc}
26-
*/
2724
public function process(ContainerBuilder $container)
2825
{
2926
if (!$container->hasDefinition('cache.system')) {

DependencyInjection/Compiler/RegisterGlobalSecurityEventListenersPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,6 @@ class RegisterGlobalSecurityEventListenersPass implements CompilerPassInterface
5252
SecurityEvents::INTERACTIVE_LOGIN,
5353
];
5454

55-
/**
56-
* {@inheritdoc}
57-
*/
5855
public function process(ContainerBuilder $container)
5956
{
6057
if (!$container->has('event_dispatcher') || !$container->hasParameter('security.firewalls')) {

DependencyInjection/Compiler/RegisterTokenUsageTrackingPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@
2727
*/
2828
class RegisterTokenUsageTrackingPass implements CompilerPassInterface
2929
{
30-
/**
31-
* {@inheritdoc}
32-
*/
3330
public function process(ContainerBuilder $container)
3431
{
3532
if (!$container->has('security.untracked_token_storage')) {

DependencyInjection/Compiler/ReplaceDecoratedRememberMeHandlerPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ final class ReplaceDecoratedRememberMeHandlerPass implements CompilerPassInterfa
2626
{
2727
private const HANDLER_TAG = 'security.remember_me_handler';
2828

29-
/**
30-
* {@inheritdoc}
31-
*/
3229
public function process(ContainerBuilder $container): void
3330
{
3431
$handledFirewalls = [];

DependencyInjection/Security/Factory/AccessTokenFactory.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ public function getPriority(): int
6464
return self::PRIORITY;
6565
}
6666

67-
/**
68-
* {@inheritdoc}
69-
*/
7067
public function getKey(): string
7168
{
7269
return 'access_token';

0 commit comments

Comments
 (0)