JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "CountValidatorInterface.php"

Full Path: /home/u743136113/domains/arvi.seezify.com/public_html/vendor/mockery/mockery/library/Mockery/CountValidator/CountValidatorInterface.php
File size: 412 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Mockery\CountValidator;

interface CountValidatorInterface
{
    /**
     * Checks if the validator can accept an additional nth call
     *
     * @param int $n
     *
     * @return bool
     */
    public function isEligible($n);

    /**
     * Validate the call count against this validator
     *
     * @param int $n
     *
     * @return bool
     */
    public function validate($n);
}