for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smoren\Validator\Structs;
use Smoren\Validator\Interfaces\ExecutionResultInterface;
class ExecutionResult implements ExecutionResultInterface
{
protected bool $areChecksSufficient;
/**
* @param bool $areChecksSufficient
*/
public function __construct(bool $areChecksSufficient)
$this->areChecksSufficient = $areChecksSufficient;
}
* {@inheritDoc}
public function areChecksSufficient(): bool
return $this->areChecksSufficient;