rogervila/provably-fair

View on GitHub
src/Result.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace ProvablyFair;

use ProvablyFair\Contracts\ProvablyFairInterface;

class Result
{
    public function __construct(
        public readonly ProvablyFairInterface $provablyFair,
        public readonly int $index,
        public readonly string $hash,
        public readonly string $value,
    ) {
    }
}