Skip to content

Commit 1967a7b

Browse files
Remove extra spaces
1 parent b541af1 commit 1967a7b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Zend/tests/property_hooks/final_prop_promoted_5.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class B extends A {
2020
}
2121
}
2222

23-
$b = new B("test" );
23+
$b = new B("test");
2424

2525
?>
2626
--EXPECT--

Zend/tests/property_hooks/final_prop_promoted_ast.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Confirm that the AST indicates final promoted properties
44
<?php
55
try {
66
assert(false && new class {
7-
public function __construct( public final $prop ) {}
7+
public function __construct(public final $prop) {}
88
});
99
} catch (Error $e) {
1010
echo $e->getMessage(), "\n";

ext/reflection/tests/ReflectionProperty_isFinal.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class C {
1313
public private(set) mixed $p7;
1414
public private(set) final mixed $p8;
1515

16-
public function __construct( final $p9, public $p10 ) {}
16+
public function __construct(final $p9, public $p10) {}
1717
}
1818

1919
$rc = new ReflectionClass(C::class);

0 commit comments

Comments
 (0)