Skip to content

Commit fb82338

Browse files
Merge branch '4.3' into 4.4
* 4.3: Remove superfluous phpdoc tags
2 parents 452e372 + 395463b commit fb82338

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

Header/MailboxHeader.php

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

62-
/**
63-
* @return Address
64-
*/
6562
public function getAddress(): Address
6663
{
6764
return $this->address;

Test/Constraint/EmailHtmlBodyContains.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public function toString(): string
3131
}
3232

3333
/**
34-
* @param RawMessage $message
35-
*
3634
* {@inheritdoc}
35+
*
36+
* @param RawMessage $message
3737
*/
3838
protected function matches($message): bool
3939
{
@@ -45,11 +45,11 @@ protected function matches($message): bool
4545
}
4646

4747
/**
48-
* @param RawMessage $message
49-
*
5048
* {@inheritdoc}
49+
*
50+
* @param RawMessage $message
5151
*/
52-
protected function failureDescription($email): string
52+
protected function failureDescription($message): string
5353
{
5454
return 'the Email HTML body '.$this->toString();
5555
}

Test/Constraint/EmailTextBodyContains.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public function toString(): string
3131
}
3232

3333
/**
34-
* @param RawMessage $message
35-
*
3634
* {@inheritdoc}
35+
*
36+
* @param RawMessage $message
3737
*/
3838
protected function matches($message): bool
3939
{
@@ -45,11 +45,11 @@ protected function matches($message): bool
4545
}
4646

4747
/**
48-
* @param RawMessage $message
49-
*
5048
* {@inheritdoc}
49+
*
50+
* @param RawMessage $message
5151
*/
52-
protected function failureDescription($email): string
52+
protected function failureDescription($message): string
5353
{
5454
return 'the Email text body '.$this->toString();
5555
}

0 commit comments

Comments
 (0)