<?php
namespace Mockery;
class VerificationDirector
{
private $expectation;
private $receivedMethodCalls;
public function __construct(ReceivedMethodCalls $receivedMethodCalls, VerificationExpectation $expectation)
{
$this->receivedMethodCalls = $receivedMethodCalls;
$this->expectation = $expectation;
}
public function atLeast()
{
return $this->cloneWithoutCountValidatorsApplyAndVerify('atLeast', []);
}
public function atMost()
{
return $this->cloneWithoutCountValidatorsApplyAndVerify('atMost', []);
}