Skip to content

Commit 18713a3

Browse files
committed
fixed CS
1 parent 2f9cd44 commit 18713a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ConstraintViolationListInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function add(ConstraintViolationInterface $violation);
2626
/**
2727
* Merges an existing violation list into this list.
2828
*/
29-
public function addAll(ConstraintViolationListInterface $otherList);
29+
public function addAll(self $otherList);
3030

3131
/**
3232
* Returns the violation at a given offset.

Mapping/ClassMetadata.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ public function addGetterMethodConstraints($property, $method, array $constraint
330330
/**
331331
* Merges the constraints of the given metadata into this object.
332332
*/
333-
public function mergeConstraints(ClassMetadata $source)
333+
public function mergeConstraints(self $source)
334334
{
335335
if ($source->isGroupSequenceProvider()) {
336336
$this->setGroupSequenceProvider(true);

0 commit comments

Comments
 (0)