for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace InputGuard\Guards\Bases;
trait Strict
{
/**
* @var bool
*/
private $strict = false;
public function strict(): self
$this->strict = true;
return $this;
}
public function nonStrict(): self
$this->strict = false;