Eloquent\Phony\Verification\AbstractCardinalityVerifier::times PHP Method

times() public method

Requires that the next verification matches an exact number of times.
public times ( integer $times )
$times integer The match count.
    public function times($times)
    {
        $this->cardinality = new Cardinality($times, $times);
        return $this;
    }