/home/mip/mip/vendor/mockery/mockery/library/Mockery/VerificationExpectation.php
<?php

namespace Mockery;

class VerificationExpectation extends Expectation
{
    public function clearCountValidators()
    {
        $this->_countValidators = array();
    }

    public function __clone()
    {
        parent::__clone();
        $this->_actualCount = 0;
    }
}