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);

src/Loggable/Mapping/Driver/Xml.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
*/
2626
class Xml extends BaseXml
2727
{
28-
/**
29-
* {@inheritdoc}
30-
*/
3128
public function readExtendedMetadata($meta, array &$config)
3229
{
3330
/**

src/Loggable/Mapping/Driver/Yaml.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ class Yaml extends File implements Driver
3333
*/
3434
protected $_extension = '.dcm.yml';
3535

36-
/**
37-
* {@inheritdoc}
38-
*/
3936
public function readExtendedMetadata($meta, array &$config)
4037
{
4138
$mapping = $this->_getMapping($meta->getName());
@@ -134,9 +131,6 @@ public function readExtendedMetadata($meta, array &$config)
134131
}
135132
}
136133

137-
/**
138-
* {@inheritdoc}
139-
*/
140134
protected function _loadMappingFile($file)
141135
{
142136
return \Symfony\Component\Yaml\Yaml::parse(file_get_contents($file));

src/Loggable/Mapping/Event/Adapter/ODM.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,16 @@
2121
*/
2222
final class ODM extends BaseAdapterODM implements LoggableAdapter
2323
{
24-
/**
25-
* {@inheritdoc}
26-
*/
2724
public function getDefaultLogEntryClass()
2825
{
2926
return LogEntry::class;
3027
}
3128

32-
/**
33-
* {@inheritdoc}
34-
*/
3529
public function isPostInsertGenerator($meta)
3630
{
3731
return false;
3832
}
3933

40-
/**
41-
* {@inheritdoc}
42-
*/
4334
public function getNewVersion($meta, $object)
4435
{
4536
$dm = $this->getObjectManager();

src/Loggable/Mapping/Event/Adapter/ORM.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,16 @@
2121
*/
2222
final class ORM extends BaseAdapterORM implements LoggableAdapter
2323
{
24-
/**
25-
* {@inheritdoc}
26-
*/
2724
public function getDefaultLogEntryClass()
2825
{
2926
return LogEntry::class;
3027
}
3128

32-
/**
33-
* {@inheritdoc}
34-
*/
3529
public function isPostInsertGenerator($meta)
3630
{
3731
return $meta->idGenerator->isPostInsertGenerator();
3832
}
3933

40-
/**
41-
* {@inheritdoc}
42-
*/
4334
public function getNewVersion($meta, $object)
4435
{
4536
$em = $this->getObjectManager();

src/Mapping/Driver/AbstractAnnotationDriver.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ abstract class AbstractAnnotationDriver implements AnnotationDriverInterface
4141
*/
4242
protected $validTypes = [];
4343

44-
/**
45-
* {@inheritdoc}
46-
*/
4744
public function setAnnotationReader($reader)
4845
{
4946
$this->reader = $reader;

src/Mapping/Driver/Chain.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ public function setDefaultDriver(Driver $driver)
7575
$this->defaultDriver = $driver;
7676
}
7777

78-
/**
79-
* {@inheritdoc}
80-
*/
8178
public function readExtendedMetadata($meta, array &$config)
8279
{
8380
foreach ($this->_drivers as $namespace => $driver) {

src/Mapping/Driver/Xml.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,6 @@ protected function _isAttributeSet(SimpleXmlElement $node, $attributeName)
8484
return isset($attributes[$attributeName]);
8585
}
8686

87-
/**
88-
* {@inheritdoc}
89-
*/
9087
protected function _loadMappingFile($file)
9188
{
9289
$result = [];

src/Mapping/Event/Adapter/ODM.php

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ class ODM implements AdapterInterface
3333
*/
3434
private $dm;
3535

36-
/**
37-
* {@inheritdoc}
38-
*/
3936
public function __call($method, $args)
4037
{
4138
if (null === $this->args) {
@@ -46,33 +43,21 @@ public function __call($method, $args)
4643
return call_user_func_array([$this->args, $method], $args);
4744
}
4845

49-
/**
50-
* {@inheritdoc}
51-
*/
5246
public function setEventArgs(EventArgs $args)
5347
{
5448
$this->args = $args;
5549
}
5650

57-
/**
58-
* {@inheritdoc}
59-
*/
6051
public function getDomainObjectName()
6152
{
6253
return 'Document';
6354
}
6455

65-
/**
66-
* {@inheritdoc}
67-
*/
6856
public function getManagerName()
6957
{
7058
return 'ODM';
7159
}
7260

73-
/**
74-
* {@inheritdoc}
75-
*/
7661
public function getRootObjectClass($meta)
7762
{
7863
return $meta->rootDocumentName;
@@ -100,41 +85,26 @@ public function getObjectManager()
10085
return $this->__call('getDocumentManager', []);
10186
}
10287

103-
/**
104-
* {@inheritdoc}
105-
*/
10688
public function getObjectState($uow, $object)
10789
{
10890
return $uow->getDocumentState($object);
10991
}
11092

111-
/**
112-
* {@inheritdoc}
113-
*/
11493
public function getObjectChangeSet($uow, $object)
11594
{
11695
return $uow->getDocumentChangeSet($object);
11796
}
11897

119-
/**
120-
* {@inheritdoc}
121-
*/
12298
public function getSingleIdentifierFieldName($meta)
12399
{
124100
return $meta->getIdentifier()[0];
125101
}
126102

127-
/**
128-
* {@inheritdoc}
129-
*/
130103
public function recomputeSingleObjectChangeSet($uow, $meta, $object)
131104
{
132105
$uow->recomputeSingleDocumentChangeSet($meta, $object);
133106
}
134107

135-
/**
136-
* {@inheritdoc}
137-
*/
138108
public function getScheduledObjectUpdates($uow)
139109
{
140110
$updates = $uow->getScheduledDocumentUpdates();
@@ -143,33 +113,21 @@ public function getScheduledObjectUpdates($uow)
143113
return array_merge($updates, $upserts);
144114
}
145115

146-
/**
147-
* {@inheritdoc}
148-
*/
149116
public function getScheduledObjectInsertions($uow)
150117
{
151118
return $uow->getScheduledDocumentInsertions();
152119
}
153120

154-
/**
155-
* {@inheritdoc}
156-
*/
157121
public function getScheduledObjectDeletions($uow)
158122
{
159123
return $uow->getScheduledDocumentDeletions();
160124
}
161125

162-
/**
163-
* {@inheritdoc}
164-
*/
165126
public function setOriginalObjectProperty($uow, $object, $property, $value)
166127
{
167128
$uow->setOriginalDocumentProperty(spl_object_hash($object), $property, $value);
168129
}
169130

170-
/**
171-
* {@inheritdoc}
172-
*/
173131
public function clearObjectChangeSet($uow, $object)
174132
{
175133
$uow->clearDocumentChangeSet(spl_object_hash($object));

0 commit comments

Comments
 (0)