1: <?php
2:
3: namespace Mockery;
4:
5: class VerificationExpectation extends Expectation
6: {
7: public function clearCountValidators()
8: {
9: $this->_countValidators = array();
10: }
11:
12: public function __clone()
13: {
14: parent::__clone();
15: $this->_actualCount = 0;
16: }
17: }
18: