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

atLeast() public method

Requires that the next verification matches a number of times greater than or equal to $minimum.
public atLeast ( integer $minimum )
$minimum integer The minimum match count.
    public function atLeast($minimum)
    {
        $this->cardinality = new Cardinality($minimum, null);
        return $this;
    }