Skip to content

Commit 6478aea

Browse files
committed
minor #57795 Use CPP where possible (alexandre-daubois)
This PR was merged into the 7.2 branch. Discussion ---------- Use CPP where possible | Q | A | ------------- | --- | Branch? | 7.2 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | - | License | MIT Some places cannot be changed as they rely on "PHP magic" things Commits ------- 877f6b2951 Use CPP where possible
2 parents d8fcf71 + 0af0f54 commit 6478aea

File tree

2 files changed

+12
-22
lines changed

2 files changed

+12
-22
lines changed

Test/Constraint/BrowserCookieValueSame.php

+7-13
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,13 @@
1616

1717
final class BrowserCookieValueSame extends Constraint
1818
{
19-
private string $name;
20-
private string $value;
21-
private bool $raw;
22-
private string $path;
23-
private ?string $domain;
24-
25-
public function __construct(string $name, string $value, bool $raw = false, string $path = '/', ?string $domain = null)
26-
{
27-
$this->name = $name;
28-
$this->path = $path;
29-
$this->domain = $domain;
30-
$this->value = $value;
31-
$this->raw = $raw;
19+
public function __construct(
20+
private string $name,
21+
private string $value,
22+
private bool $raw = false,
23+
private string $path = '/',
24+
private ?string $domain = null,
25+
) {
3226
}
3327

3428
public function toString(): string

Test/Constraint/BrowserHasCookie.php

+5-9
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,11 @@
1616

1717
final class BrowserHasCookie extends Constraint
1818
{
19-
private string $name;
20-
private string $path;
21-
private ?string $domain;
22-
23-
public function __construct(string $name, string $path = '/', ?string $domain = null)
24-
{
25-
$this->name = $name;
26-
$this->path = $path;
27-
$this->domain = $domain;
19+
public function __construct(
20+
private string $name,
21+
private string $path = '/',
22+
private ?string $domain = null,
23+
) {
2824
}
2925

3026
public function toString(): string

0 commit comments

Comments
 (0)