Skip to content

Commit 4fc3b4d

Browse files
franmomuphansys
authored andcommitted
Remove @inheritdoc
1 parent 905ee33 commit 4fc3b4d

File tree

90 files changed

+0
-795
lines changed

Some content is hidden

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

90 files changed

+0
-795
lines changed

src/Blameable/BlameableListener.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,6 @@ public function setUserValue($user)
7171
$this->user = $user;
7272
}
7373

74-
/**
75-
* {@inheritdoc}
76-
*/
7774
protected function getNamespace()
7875
{
7976
return __NAMESPACE__;

src/Blameable/Mapping/Driver/Annotation.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ class Annotation extends AbstractAnnotationDriver
3939
'int',
4040
];
4141

42-
/**
43-
* {@inheritdoc}
44-
*/
4542
public function readExtendedMetadata($meta, array &$config)
4643
{
4744
$class = $this->getMetaReflectionClass($meta);

src/Blameable/Mapping/Driver/Xml.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ class Xml extends BaseXml
3434
'int',
3535
];
3636

37-
/**
38-
* {@inheritdoc}
39-
*/
4037
public function readExtendedMetadata($meta, array &$config)
4138
{
4239
/**

src/Blameable/Mapping/Driver/Yaml.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ class Yaml extends File implements Driver
4444
'int',
4545
];
4646

47-
/**
48-
* {@inheritdoc}
49-
*/
5047
public function readExtendedMetadata($meta, array &$config)
5148
{
5249
$mapping = $this->_getMapping($meta->getName());
@@ -114,9 +111,6 @@ public function readExtendedMetadata($meta, array &$config)
114111
}
115112
}
116113

117-
/**
118-
* {@inheritdoc}
119-
*/
120114
protected function _loadMappingFile($file)
121115
{
122116
return \Symfony\Component\Yaml\Yaml::parse(file_get_contents($file));

src/IpTraceable/IpTraceableListener.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,6 @@ public function setIpValue($ip = null)
5959
$this->ip = $ip;
6060
}
6161

62-
/**
63-
* {@inheritdoc}
64-
*/
6562
protected function getNamespace()
6663
{
6764
return __NAMESPACE__;

src/IpTraceable/Mapping/Driver/Annotation.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ class Annotation extends AbstractAnnotationDriver
3737
'string',
3838
];
3939

40-
/**
41-
* {@inheritdoc}
42-
*/
4340
public function readExtendedMetadata($meta, array &$config)
4441
{
4542
$class = $this->getMetaReflectionClass($meta);

src/IpTraceable/Mapping/Driver/Xml.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ class Xml extends BaseXml
3434
'string',
3535
];
3636

37-
/**
38-
* {@inheritdoc}
39-
*/
4037
public function readExtendedMetadata($meta, array &$config)
4138
{
4239
/**

src/IpTraceable/Mapping/Driver/Yaml.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ class Yaml extends File implements Driver
4242
'string',
4343
];
4444

45-
/**
46-
* {@inheritdoc}
47-
*/
4845
public function readExtendedMetadata($meta, array &$config)
4946
{
5047
$mapping = $this->_getMapping($meta->getName());
@@ -112,9 +109,6 @@ public function readExtendedMetadata($meta, array &$config)
112109
}
113110
}
114111

115-
/**
116-
* {@inheritdoc}
117-
*/
118112
protected function _loadMappingFile($file)
119113
{
120114
return \Symfony\Component\Yaml\Yaml::parse(file_get_contents($file));

src/Loggable/LoggableListener.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,6 @@ protected function prePersistLogEntry($logEntry, $object)
203203
{
204204
}
205205

206-
/**
207-
* {@inheritdoc}
208-
*/
209206
protected function getNamespace()
210207
{
211208
return __NAMESPACE__;

src/Loggable/Mapping/Driver/Annotation.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ class Annotation extends AbstractAnnotationDriver
3636
*/
3737
public const VERSIONED = Versioned::class;
3838

39-
/**
40-
* {@inheritdoc}
41-
*/
4239
public function validateFullMetadata(ClassMetadata $meta, array $config)
4340
{
4441
if ($config && is_array($meta->getIdentifier()) && count($meta->getIdentifier()) > 1) {
@@ -49,9 +46,6 @@ public function validateFullMetadata(ClassMetadata $meta, array $config)
4946
}
5047
}
5148

52-
/**
53-
* {@inheritdoc}
54-
*/
5549
public function readExtendedMetadata($meta, array &$config)
5650
{
5751
$class = $this->getMetaReflectionClass($meta);

0 commit comments

Comments
 (0)