chore: coding style changes

This commit is contained in:
nuno maduro
2026-08-07 14:52:56 +01:00
parent eb88513baf
commit 42d9b777bf
221 changed files with 139 additions and 3086 deletions
+1 -12
View File
@@ -12,26 +12,17 @@ use ReflectionClass;
*/
final class HigherOrderTapProxy
{
/**
* Create a new tap proxy instance.
*/
public function __construct(
public TestCase $target
) {
// ..
//
}
/**
* Dynamically sets properties on the target.
*/
public function __set(string $property, mixed $value): void
{
$this->target->{$property} = $value;
}
/**
* Dynamically pass properties gets to the target.
*/
public function __get(string $property): mixed
{
if (property_exists($this->target, $property)) {
@@ -50,8 +41,6 @@ final class HigherOrderTapProxy
}
/**
* Dynamically pass method calls to the target.
*
* @param array<int, mixed> $arguments
* @return mixed
*/