Skip to content

Commit 7dddf80

Browse files
committedAug 25, 2022
[CS] Remove @inheritdoc PHPDoc
1 parent a10bc23 commit 7dddf80

File tree

109 files changed

+0
-1349
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+0
-1349
lines changed
 

‎AbstractExtension.php

-15
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ abstract class AbstractExtension implements FormExtensionInterface
4343
*/
4444
private bool $typeGuesserLoaded = false;
4545

46-
/**
47-
* {@inheritdoc}
48-
*/
4946
public function getType(string $name): FormTypeInterface
5047
{
5148
if (!isset($this->types)) {
@@ -59,9 +56,6 @@ public function getType(string $name): FormTypeInterface
5956
return $this->types[$name];
6057
}
6158

62-
/**
63-
* {@inheritdoc}
64-
*/
6559
public function hasType(string $name): bool
6660
{
6761
if (!isset($this->types)) {
@@ -71,9 +65,6 @@ public function hasType(string $name): bool
7165
return isset($this->types[$name]);
7266
}
7367

74-
/**
75-
* {@inheritdoc}
76-
*/
7768
public function getTypeExtensions(string $name): array
7869
{
7970
if (!isset($this->typeExtensions)) {
@@ -84,9 +75,6 @@ public function getTypeExtensions(string $name): array
8475
?? [];
8576
}
8677

87-
/**
88-
* {@inheritdoc}
89-
*/
9078
public function hasTypeExtensions(string $name): bool
9179
{
9280
if (!isset($this->typeExtensions)) {
@@ -96,9 +84,6 @@ public function hasTypeExtensions(string $name): bool
9684
return isset($this->typeExtensions[$name]) && \count($this->typeExtensions[$name]) > 0;
9785
}
9886

99-
/**
100-
* {@inheritdoc}
101-
*/
10287
public function getTypeGuesser(): ?FormTypeGuesserInterface
10388
{
10489
if (!$this->typeGuesserLoaded) {

‎AbstractRendererEngine.php

-12
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@ public function __construct(array $defaultThemes = [])
6161
$this->defaultThemes = $defaultThemes;
6262
}
6363

64-
/**
65-
* {@inheritdoc}
66-
*/
6764
public function setTheme(FormView $view, mixed $themes, bool $useDefaultThemes = true)
6865
{
6966
$cacheKey = $view->vars[self::CACHE_KEY_VAR];
@@ -78,9 +75,6 @@ public function setTheme(FormView $view, mixed $themes, bool $useDefaultThemes =
7875
unset($this->resources[$cacheKey], $this->resourceHierarchyLevels[$cacheKey]);
7976
}
8077

81-
/**
82-
* {@inheritdoc}
83-
*/
8478
public function getResourceForBlockName(FormView $view, string $blockName): mixed
8579
{
8680
$cacheKey = $view->vars[self::CACHE_KEY_VAR];
@@ -92,9 +86,6 @@ public function getResourceForBlockName(FormView $view, string $blockName): mixe
9286
return $this->resources[$cacheKey][$blockName];
9387
}
9488

95-
/**
96-
* {@inheritdoc}
97-
*/
9889
public function getResourceForBlockNameHierarchy(FormView $view, array $blockNameHierarchy, int $hierarchyLevel): mixed
9990
{
10091
$cacheKey = $view->vars[self::CACHE_KEY_VAR];
@@ -107,9 +98,6 @@ public function getResourceForBlockNameHierarchy(FormView $view, array $blockNam
10798
return $this->resources[$cacheKey][$blockName];
10899
}
109100

110-
/**
111-
* {@inheritdoc}
112-
*/
113101
public function getResourceHierarchyLevel(FormView $view, array $blockNameHierarchy, int $hierarchyLevel): int|false
114102
{
115103
$cacheKey = $view->vars[self::CACHE_KEY_VAR];

0 commit comments

Comments
 (0)
Please sign in to comment.