Eloquent\Phony\Verification\AbstractCardinalityVerifierEventCollection::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)
    {
        return $this->between($minimum, null);
    }