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