for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ray\TestDouble;
final class Log
{
/**
* @param array<mixed> $arguments
* @param array<mixed> $namedArguments
*/
public function __construct(
public array $arguments,
public array $namedArguments,
public mixed $result,
public float $time,
) {
}