Skip to content

Commit ee7a200

Browse files
committed
[CS] Remove @inheritdoc PHPDoc
1 parent 47b3400 commit ee7a200

25 files changed

+0
-135
lines changed

DataCollector/TwigDataCollector.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,26 +38,17 @@ public function __construct(Profile $profile, Environment $twig = null)
3838
$this->twig = $twig;
3939
}
4040

41-
/**
42-
* {@inheritdoc}
43-
*/
4441
public function collect(Request $request, Response $response, \Throwable $exception = null)
4542
{
4643
}
4744

48-
/**
49-
* {@inheritdoc}
50-
*/
5145
public function reset()
5246
{
5347
$this->profile->reset();
5448
unset($this->computed);
5549
$this->data = [];
5650
}
5751

58-
/**
59-
* {@inheritdoc}
60-
*/
6152
public function lateCollect()
6253
{
6354
$this->data['profile'] = serialize($this->profile);
@@ -187,9 +178,6 @@ private function computeData(Profile $profile)
187178
return $data;
188179
}
189180

190-
/**
191-
* {@inheritdoc}
192-
*/
193181
public function getName(): string
194182
{
195183
return 'twig';

ErrorRenderer/TwigErrorRenderer.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ public function __construct(Environment $twig, HtmlErrorRenderer $fallbackErrorR
3939
$this->debug = \is_bool($debug) ? $debug : $debug(...);
4040
}
4141

42-
/**
43-
* {@inheritdoc}
44-
*/
4542
public function render(\Throwable $exception): FlattenException
4643
{
4744
$exception = $this->fallbackErrorRenderer->render($exception);

Extension/AssetExtension.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ public function __construct(Packages $packages)
2929
$this->packages = $packages;
3030
}
3131

32-
/**
33-
* {@inheritdoc}
34-
*/
3532
public function getFunctions(): array
3633
{
3734
return [

Extension/CodeExtension.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ public function __construct(string|FileLinkFormatter $fileLinkFormat, string $pr
3333
$this->charset = $charset;
3434
}
3535

36-
/**
37-
* {@inheritdoc}
38-
*/
3936
public function getFilters(): array
4037
{
4138
return [

Extension/CsrfExtension.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
*/
2121
final class CsrfExtension extends AbstractExtension
2222
{
23-
/**
24-
* {@inheritdoc}
25-
*/
2623
public function getFunctions(): array
2724
{
2825
return [

Extension/DumpExtension.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,13 @@ public function __construct(ClonerInterface $cloner, HtmlDumper $dumper = null)
3535
$this->dumper = $dumper;
3636
}
3737

38-
/**
39-
* {@inheritdoc}
40-
*/
4138
public function getFunctions(): array
4239
{
4340
return [
4441
new TwigFunction('dump', $this->dump(...), ['is_safe' => ['html'], 'needs_context' => true, 'needs_environment' => true]),
4542
];
4643
}
4744

48-
/**
49-
* {@inheritdoc}
50-
*/
5145
public function getTokenParsers(): array
5246
{
5347
return [new DumpTokenParser()];

Extension/ExpressionExtension.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
*/
2323
final class ExpressionExtension extends AbstractExtension
2424
{
25-
/**
26-
* {@inheritdoc}
27-
*/
2825
public function getFunctions(): array
2926
{
3027
return [

Extension/FormExtension.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ public function __construct(TranslatorInterface $translator = null)
4040
$this->translator = $translator;
4141
}
4242

43-
/**
44-
* {@inheritdoc}
45-
*/
4643
public function getTokenParsers(): array
4744
{
4845
return [
@@ -51,9 +48,6 @@ public function getTokenParsers(): array
5148
];
5249
}
5350

54-
/**
55-
* {@inheritdoc}
56-
*/
5751
public function getFunctions(): array
5852
{
5953
return [
@@ -77,9 +71,6 @@ public function getFunctions(): array
7771
];
7872
}
7973

80-
/**
81-
* {@inheritdoc}
82-
*/
8374
public function getFilters(): array
8475
{
8576
return [
@@ -88,9 +79,6 @@ public function getFilters(): array
8879
];
8980
}
9081

91-
/**
92-
* {@inheritdoc}
93-
*/
9482
public function getTests(): array
9583
{
9684
return [

Extension/HttpFoundationExtension.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ public function __construct(UrlHelper $urlHelper)
3030
$this->urlHelper = $urlHelper;
3131
}
3232

33-
/**
34-
* {@inheritdoc}
35-
*/
3633
public function getFunctions(): array
3734
{
3835
return [

Extension/HttpKernelExtension.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
*/
2323
final class HttpKernelExtension extends AbstractExtension
2424
{
25-
/**
26-
* {@inheritdoc}
27-
*/
2825
public function getFunctions(): array
2926
{
3027
return [

0 commit comments

Comments
 (0)