File tree Expand file tree Collapse file tree 5 files changed +5
-33
lines changed
src/Symfony/Component/Validator/Mapping/Loader Expand file tree Collapse file tree 5 files changed +5
-33
lines changed Original file line number Diff line number Diff line change @@ -30,22 +30,13 @@ class AnnotationLoader implements LoaderInterface
30
30
*/
31
31
protected $ reader ;
32
32
33
- /**
34
- * Creates a new loader.
35
- *
36
- * @param Reader $reader The annotation reader to use.
37
- */
38
33
public function __construct (Reader $ reader )
39
34
{
40
35
$ this ->reader = $ reader ;
41
36
}
42
37
43
38
/**
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}
49
40
*/
50
41
public function loadClassMetadata (ClassMetadata $ metadata )
51
42
{
Original file line number Diff line number Diff line change @@ -47,12 +47,7 @@ public function __construct(array $loaders)
47
47
}
48
48
<
10000
code class="diff-text syntax-highlighted-line">
49
49
/**
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}
56
51
*/
57
52
public function loadClassMetadata (ClassMetadata $ metadata )
58
53
{
Original file line number Diff line number Diff line change @@ -39,13 +39,7 @@ public function __construct($methodName = 'loadValidatorMetadata')
39
39
}
40
40
41
41
/**
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}
49
43
*/
50
44
public function loadClassMetadata (ClassMetadata $ metadata )
51
45
{
Original file line number Diff line number Diff line change @@ -30,11 +30,7 @@ class XmlFileLoader extends FileLoader
30
30
protected $ classes = null ;
31
31
32
32
/**
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}
38
34
*/
39
35
public function loadClassMetadata (ClassMetadata $ metadata )
40
36
{
Original file line number Diff line number Diff line change @@ -36,11 +36,7 @@ class YamlFileLoader extends FileLoader
36
36
private $ yamlParser ;
37
37
38
38
/**
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}
44
40
*/
45
41
public function loadClassMetadata (ClassMetadata $ metadata )
46
42
{
You can’t perform that action at this time.
0 commit comments