8000 removed redundant phpdocs · symfony/symfony@5f6d235 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5f6d235

Browse files
committed
removed redundant phpdocs
1 parent 5ce1dc3 commit 5f6d235

File tree

5 files changed

+5
-33
lines changed

5 files changed

+5
-33
lines changed

src/Symfony/Component/Validator/Mapping/Loader/AnnotationLoader.php

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,13 @@ class AnnotationLoader implements LoaderInterface
3030
*/
3131
protected $reader;
3232

33-
/**
34-
* Creates a new loader.
35-
*
36-
* @param Reader $reader The annotation reader to use.
37-
*/
3833
public function __construct(Reader $reader)
3934
{
4035
$this->reader = $reader;
4136
}
4237

4338
/**
44-
* Loads the metadata using annotations defined in the class.
45-
*
46-
* @param ClassMetadata $metadata The class metadata to load
47-
*
48-
* @return bool Whether the loader succeeded
39+
* {@inheritdoc}
4940
*/
5041
public function loadClassMetadata(ClassMetadata $metadata)
5142
{

src/Symfony/Component/Validator/Mapping/Loader/LoaderChain.php

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,7 @@ public function __construct(array $loaders)
4747
}
4848< 10000 code class="diff-text syntax-highlighted-line">

4949
/**
50-
* Calls {@link LoaderInterface::loadClassMetadata()} on all loaders in
51-
* the chain.
52-
*
53-
* @param ClassMetadata $metadata The metadata to load
54-
*
55-
* @return bool Whether the loader succeeded
50+
* {@inheritdoc}
5651
*/
5752
public function loadClassMetadata(ClassMetadata $metadata)
5853
{

src/Symfony/Component/Validator/Mapping/Loader/StaticMethodLoader.php

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,7 @@ public function __construct($methodName = 'loadValidatorMetadata')
3939
}
4040

4141
/**
42-
* Loads validation metadata by calling a static method in the class.
43-
*
44-
* The name of the static method is passed to {@link __construct()}.
45-
*
46-
* @param ClassMetadata $metadata The metadata to load
47-
*
48-
* @return bool Whether the loader succeeded
42+
* {@inheritdoc}
4943
*/
5044
public function loadClassMetadata(ClassMetadata $metadata)
5145
{

src/Symfony/Component/Validator/Mapping/Loader/XmlFileLoader.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,7 @@ class XmlFileLoader extends FileLoader
3030
protected $classes = null;
3131

3232
/**
33-
* Loads validation metadata using the metadata defined in the XML file.
34-
*
35-
* @param ClassMetadata $metadata The metadata to load
36-
*
37-
* @return bool Whether the loader succeeded
33+
* {@inheritdoc}
3834
*/
3935
public function loadClassMetadata(ClassMetadata $metadata)
4036
{

src/Symfony/Component/Validator/Mapping/Loader/YamlFileLoader.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,7 @@ class YamlFileLoader extends FileLoader
3636
private $yamlParser;
3737

3838
/**
39-
* Loads validation metadata using the metadata defined in the YAML file.
40-
*
41-
* @param ClassMetadata $metadata The metadata to load
42-
*
43-
* @return bool Whether the loader succeeded
39+
* {@inheritdoc}
4440
*/
4541
public function loadClassMetadata(ClassMetadata $metadata)
4642
{

0 commit comments

Comments
 (0)
0