X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/vendor/mockery/mockery/library/Mockery
home
/
gfecatvj
/
sites
/
realesbar
/
vendor
/
mockery
/
mockery
/
library
/
Mockery
/
π
..
π
Adapter
π
ClosureWrapper.php
(1018 B)
π
CompositeExpectation.php
(3.91 KB)
π
Configuration.php
(5.25 KB)
π
Container.php
(15.6 KB)
π
CountValidator
π
Exception
π
Exception.php
(757 B)
π
Expectation.php
(22.45 KB)
π
ExpectationDirector.php
(5.57 KB)
π
ExpectationInterface.php
(1.06 KB)
π
ExpectsHigherOrderMessage.php
(1.06 KB)
π
Generator
π
HigherOrderMessage.php
(1.3 KB)
π
Instantiator.php
(6.52 KB)
π
LegacyMockInterface.php
(5.93 KB)
π
Loader
π
Matcher
π
MethodCall.php
(1.01 KB)
π
Mock.php
(27.98 KB)
π
MockInterface.php
(1.23 KB)
π
ReceivedMethodCalls.php
(1.29 KB)
π
Undefined.php
(1.13 KB)
π
VerificationDirector.php
(3.05 KB)
π
VerificationExpectation.php
(958 B)
Editing: ReceivedMethodCalls.php
<?php /** * Mockery * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://github.com/padraic/mockery/blob/master/LICENSE * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to padraic@php.net so we can send you a copy immediately. * * @category Mockery * @package Mockery * @copyright Copyright (c) 2010 PΓ‘draic Brady (http://blog.astrumfutura.com) * @license http://github.com/padraic/mockery/blob/master/LICENSE New BSD License */ namespace Mockery; class ReceivedMethodCalls { private $methodCalls = array(); public function push(MethodCall $methodCall) { $this->methodCalls[] = $methodCall; } public function verify(Expectation $expectation) { foreach ($this->methodCalls as $methodCall) { if ($methodCall->getMethod() !== $expectation->getName()) { continue; } if (!$expectation->matchArgs($methodCall->getArgs())) { continue; } $expectation->verifyCall($methodCall->getArgs()); } $expectation->verify(); } }
Upload File
Create Folder