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\ValidationResultInterface;
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;