Skip to content

Commit eba7cd3

Browse files
committed
[CS] Remove @inheritdoc PHPDoc
1 parent a78fb3e commit eba7cd3

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

Test/Constraint/BrowserCookieValueSame.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ public function __construct(string $name, string $value, bool $raw = false, stri
3131
$this->raw = $raw;
3232
}
3333

34-
/**
35-
* {@inheritdoc}
36-
*/
3734
public function toString(): string
3835
{
3936
$str = sprintf('has cookie "%s"', $this->name);
@@ -50,8 +47,6 @@ public function toString(): string
5047

5148
/**
5249
* @param AbstractBrowser $browser
53-
*
54-
* {@inheritdoc}
5550
*/
5651
protected function matches($browser): bool
5752
{
@@ -65,8 +60,6 @@ protected function matches($browser): bool
6560

6661
/**
6762
* @param AbstractBrowser $browser
68-
*
69-
* {@inheritdoc}
7063
*/
7164
protected function failureDescription($browser): string
7265
{

Test/Constraint/BrowserHasCookie.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ public function __construct(string $name, string $path = '/', string $domain = n
2727
$this->domain = $domain;
2828
}
2929

30-
/**
31-
* {@inheritdoc}
32-
*/
3330
public function toString(): string
3431
{
3532
$str = sprintf('has cookie "%s"', $this->name);
@@ -45,8 +42,6 @@ public function toString(): string
4542

4643
/**
4744
* @param AbstractBrowser $browser
48-
*
49-
* {@inheritdoc}
5045
*/
5146
protected function matches($browser): bool
5247
{
@@ -55,8 +50,6 @@ protected function matches($browser): bool
5550

5651
/**
5752
* @param AbstractBrowser $browser
58-
*
59-
* {@inheritdoc}
6053
*/
6154
protected function failureDescription($browser): string
6255
{

0 commit comments

Comments
 (0)