!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/mockery/mockery/library/Mockery/   drwxr-xr-x
Free 117.42 GB of 200.55 GB (58.55%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Mock.php (21.55 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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-2014 Pádraic Brady (http://blog.astrumfutura.com)
 * @license    http://github.com/padraic/mockery/blob/master/LICENSE New BSD License
 */

namespace Mockery;

use 
Mockery\MockInterface;

class 
Mock implements MockInterface
{

    
/**
     * Stores an array of all expectation directors for this mock
     *
     * @var array
     */
    
protected $_mockery_expectations = array();

    
/**
     * Flag to indicate whether we can ignore method calls missing from our
     * expectations
     *
     * @var bool
     */
    
protected $_mockery_ignoreMissing false;

    
/**
     * Flag to indicate whether we can defer method calls missing from our
     * expectations
     *
     * @var bool
     */
    
protected $_mockery_deferMissing false;

    
/**
     * Flag to indicate whether this mock was verified
     *
     * @var bool
     */
    
protected $_mockery_verified false;

    
/**
     * Given name of the mock
     *
     * @var string
     */
    
protected $_mockery_name null;

    
/**
     * Order number of allocation
     *
     * @var int
     */
    
protected $_mockery_allocatedOrder 0;

    
/**
     * Current ordered number
     *
     * @var int
     */
    
protected $_mockery_currentOrder 0;

    
/**
     * Ordered groups
     *
     * @var array
     */
    
protected $_mockery_groups = array();

    
/**
     * Mock container containing this mock object
     *
     * @var \Mockery\Container
     */
    
protected $_mockery_container null;

    
/**
     * Instance of a core object on which methods are called in the event
     * it has been set, and an expectation for one of the object's methods
     * does not exist. This implements a simple partial mock proxy system.
     *
     * @var object
     */
    
protected $_mockery_partial null;

    
/**
     * Flag to indicate we should ignore all expectations temporarily. Used
     * mainly to prevent expectation matching when in the middle of a mock
     * object recording session.
     *
     * @var bool
     */
    
protected $_mockery_disableExpectationMatching false;

    
/**
     * Stores all stubbed public methods separate from any on-object public
     * properties that may exist.
     *
     * @var array
     */
    
protected $_mockery_mockableProperties = array();

    
/**
     * @var array
     */
    
protected $_mockery_mockableMethods = array();

    
/**
     * Just a local cache for this mock's target's methods
     *
     * @var ReflectionMethod[]
     */
    
protected static $_mockery_methods;

    protected 
$_mockery_allowMockingProtectedMethods false;

    protected 
$_mockery_receivedMethodCalls;

    
/**
     * If shouldIgnoreMissing is called, this value will be returned on all calls to missing methods
     * @var mixed
     */
    
protected $_mockery_defaultReturnValue null;

    
/**
     * We want to avoid constructors since class is copied to Generator.php
     * for inclusion on extending class definitions.
     *
     * @param \Mockery\Container $container
     * @param object $partialObject
     * @return void
     */
    
public function mockery_init(\Mockery\Container $container null$partialObject null)
    {
        if (
is_null($container)) {
            
$container = new \Mockery\Container;
        }
        
$this->_mockery_container $container;
        if (!
is_null($partialObject)) {
            
$this->_mockery_partial $partialObject;
        }

        if (!\
Mockery::getConfiguration()->mockingNonExistentMethodsAllowed()) {
            foreach (
$this->mockery_getMethods() as $method) {
                if (
$method->isPublic() && !$method->isStatic()) {
                    
$this->_mockery_mockableMethods[] = $method->getName();
                }
            }
        }
    }

    
/**
     * Set expected method calls
     *
     * @param mixed
     * @return \Mockery\Expectation
     */
    
public function shouldReceive()
    {
        
/** @var array $nonPublicMethods */
        
$nonPublicMethods $this->getNonPublicMethods();

        
$self $this;
        
$allowMockingProtectedMethods $this->_mockery_allowMockingProtectedMethods;

        
$lastExpectation = \Mockery::parseShouldReturnArgs(
            
$thisfunc_get_args(), function ($method) use ($self$nonPublicMethods$allowMockingProtectedMethods) {
                
$rm $self->mockery_getMethod($method);
                if (
$rm) {
                    if (
$rm->isPrivate()) {
                        throw new \
InvalidArgumentException("$method() cannot be mocked as it is a private method");
                    }
                    if (!
$allowMockingProtectedMethods && $rm->isProtected()) {
                        throw new \
InvalidArgumentException("$method() cannot be mocked as it a protected method and mocking protected methods is not allowed for this mock");
                    }
                }

                
$director $self->mockery_getExpectationsFor($method);
                if (!
$director) {
                    
$director = new \Mockery\ExpectationDirector($method$self);
                    
$self->mockery_setExpectationsFor($method$director);
                }
                
$expectation = new \Mockery\Expectation($self$method);
                
$director->addExpectation($expectation);
                return 
$expectation;
            }
        );
        return 
$lastExpectation;
    }

    
/**
     * Shortcut method for setting an expectation that a method should not be called.
     *
     * @param mixed
     * @return \Mockery\Expectation
     */
    
public function shouldNotReceive()
    {
        
$expectation call_user_func_array(array($this'shouldReceive'), func_get_args());
        
$expectation->never();
        return 
$expectation;
    }

    
/**
     * Allows additional methods to be mocked that do not explicitly exist on mocked class
     * @param String $method name of the method to be mocked
     * @return Mock
     */
    
public function shouldAllowMockingMethod($method)
    {
        
$this->_mockery_mockableMethods[] = $method;
        return 
$this;
    }

    
/**
     * Set mock to ignore unexpected methods and return Undefined class
     * @param mixed $returnValue the default return value for calls to missing functions on this mock
     * @return Mock
     */
    
public function shouldIgnoreMissing($returnValue null)
    {
        
$this->_mockery_ignoreMissing true;
        
$this->_mockery_defaultReturnValue $returnValue;
        return 
$this;
    }

    public function 
asUndefined()
    {
        
$this->_mockery_ignoreMissing true;
        
$this->_mockery_defaultReturnValue = new \Mockery\Undefined;
        return 
$this;
    }

    
/**
     * @return Mock
     */
    
public function shouldAllowMockingProtectedMethods()
    {
        
$this->_mockery_allowMockingProtectedMethods true;
        return 
$this;
    }


    
/**
     * Set mock to defer unexpected methods to it's parent
     *
     * This is particularly useless for this class, as it doesn't have a parent,
     * but included for completeness
     *
     * @return Mock
     */
    
public function shouldDeferMissing()
    {
        
$this->_mockery_deferMissing true;
        return 
$this;
    }

    
/**
     * Create an obviously worded alias to shouldDeferMissing()
     *
     * @return Mock
     */
    
public function makePartial()
    {
        return 
$this->shouldDeferMissing();
    }

    
/**
     * Accepts a closure which is executed with an object recorder which proxies
     * to the partial source object. The intent being to record the
     * interactions of a concrete object as a set of expectations on the
     * current mock object. The partial may then be passed to a second process
     * to see if it fulfils the same (or exact same) contract as the original.
     *
     * @param Closure $closure
     */
    
public function shouldExpect(\Closure $closure)
    {
        
$recorder = new \Mockery\Recorder($this$this->_mockery_partial);
        
$this->_mockery_disableExpectationMatching true;
        
$closure($recorder);
        
$this->_mockery_disableExpectationMatching false;
        return 
$this;
    }

    
/**
     * In the event shouldReceive() accepting one or more methods/returns,
     * this method will switch them from normal expectations to default
     * expectations
     *
     * @return self
     */
    
public function byDefault()
    {
        foreach (
$this->_mockery_expectations as $director) {
            
$exps $director->getExpectations();
            foreach (
$exps as $exp) {
                
$exp->byDefault();
            }
        }
        return 
$this;
    }

    
/**
     * Capture calls to this mock
     */
    
public function __call($method, array $args)
    {
        return 
$this->_mockery_handleMethodCall($method$args);
    }

    public static function 
__callStatic($method, array $args)
    {
        return 
self::_mockery_handleStaticMethodCall($method$args);
    }

    
/**
     * Forward calls to this magic method to the __call method
     */
    
public function __toString()
    {
        return 
$this->__call('__toString', array());
    }

    
/**public function __set($name, $value)
    {
        $this->_mockery_mockableProperties[$name] = $value;
        return $this;
    }

    public function __get($name)
    {
        if (isset($this->_mockery_mockableProperties[$name])) {
            return $this->_mockery_mockableProperties[$name];
        } elseif(isset($this->{$name})) {
            return $this->{$name};
        }
        throw new \InvalidArgumentException (
            'Property ' . __CLASS__ . '::' . $name . ' does not exist on this mock object'
        );
    }**/

    /**
     * Iterate across all expectation directors and validate each
     *
     * @throws \Mockery\CountValidator\Exception
     * @return void
     */
    
public function mockery_verify()
    {
        if (
$this->_mockery_verified) {
            return 
true;
        }
        if (isset(
$this->_mockery_ignoreVerification)
            && 
$this->_mockery_ignoreVerification == true) {
            return 
true;
        }
        
$this->_mockery_verified true;
        foreach (
$this->_mockery_expectations as $director) {
            
$director->verify();
        }
    }

    
/**
     * Tear down tasks for this mock
     *
     * @return void
     */
    
public function mockery_teardown()
    {
    }

    
/**
     * Fetch the next available allocation order number
     *
     * @return int
     */
    
public function mockery_allocateOrder()
    {
        
$this->_mockery_allocatedOrder += 1;
        return 
$this->_mockery_allocatedOrder;
    }

    
/**
     * Set ordering for a group
     *
     * @param mixed $group
     * @param int $order
     */
    
public function mockery_setGroup($group$order)
    {
        
$this->_mockery_groups[$group] = $order;
    }

    
/**
     * Fetch array of ordered groups
     *
     * @return array
     */
    
public function mockery_getGroups()
    {
        return 
$this->_mockery_groups;
    }

    
/**
     * Set current ordered number
     *
     * @param int $order
     */
    
public function mockery_setCurrentOrder($order)
    {
        
$this->_mockery_currentOrder $order;
        return 
$this->_mockery_currentOrder;
    }

    
/**
     * Get current ordered number
     *
     * @return int
     */
    
public function mockery_getCurrentOrder()
    {
        return 
$this->_mockery_currentOrder;
    }

    
/**
     * Validate the current mock's ordering
     *
     * @param string $method
     * @param int $order
     * @throws \Mockery\Exception
     * @return void
     */
    
public function mockery_validateOrder($method$order)
    {
        if (
$order $this->_mockery_currentOrder) {
            
$exception = new \Mockery\Exception\InvalidOrderException(
                
'Method ' __CLASS__ '::' $method '()'
                
' called out of order: expected order '
                
$order ', was ' $this->_mockery_currentOrder
            
);
            
$exception->setMock($this)
                ->
setMethodName($method)
                ->
setExpectedOrder($order)
                ->
setActualOrder($this->_mockery_currentOrder);
            throw 
$exception;
        }
        
$this->mockery_setCurrentOrder($order);
    }

    
/**
     * Gets the count of expectations for this mock
     *
     * @return int
     */
    
public function mockery_getExpectationCount()
    {
        
$count 0;
        foreach (
$this->_mockery_expectations as $director) {
            
$count += $director->getExpectationCount();
        }
        return 
$count;
    }

    
/**
     * Return the expectations director for the given method
     *
     * @var string $method
     * @return \Mockery\ExpectationDirector|null
     */
    
public function mockery_setExpectationsFor($method, \Mockery\ExpectationDirector $director)
    {
        
$this->_mockery_expectations[$method] = $director;
    }

    
/**
     * Return the expectations director for the given method
     *
     * @var string $method
     * @return \Mockery\ExpectationDirector|null
     */
    
public function mockery_getExpectationsFor($method)
    {
        if (isset(
$this->_mockery_expectations[$method])) {
            return 
$this->_mockery_expectations[$method];
        }
    }

    
/**
     * Find an expectation matching the given method and arguments
     *
     * @var string $method
     * @var array $args
     * @return \Mockery\Expectation|null
     */
    
public function mockery_findExpectation($method, array $args)
    {
        if (!isset(
$this->_mockery_expectations[$method])) {
            return 
null;
        }
        
$director $this->_mockery_expectations[$method];

        return 
$director->findExpectation($args);
    }

    
/**
     * Return the container for this mock
     *
     * @return \Mockery\Container
     */
    
public function mockery_getContainer()
    {
        return 
$this->_mockery_container;
    }

    
/**
     * Return the name for this mock
     *
     * @return string
     */
    
public function mockery_getName()
    {
        return 
__CLASS__;
    }

    
/**
     * @return array
     */
    
public function mockery_getMockableProperties()
    {
        return 
$this->_mockery_mockableProperties;
    }

    public function 
__isset($name)
    {
        if (
false === stripos($name'_mockery_') && method_exists(get_parent_class($this), '__isset')) {
            return 
parent::__isset($name);
        }
    }

    public function 
mockery_getExpectations()
    {
        return 
$this->_mockery_expectations;
    }

    
/**
     * Calls a parent class method and returns the result. Used in a passthru
     * expectation where a real return value is required while still taking
     * advantage of expectation matching and call count verification.
     *
     * @param string $name
     * @param array $args
     * @return mixed
     */
    
public function mockery_callSubjectMethod($name, array $args)
    {
        return 
call_user_func_array('parent::' $name$args);
    }

    
/**
     * @return string[]
     */
    
public function mockery_getMockableMethods()
    {
        return 
$this->_mockery_mockableMethods;
    }

    
/**
     * @return bool
     */
    
public function mockery_isAnonymous()
    {
        
$rfc = new \ReflectionClass($this);
        return 
false === $rfc->getParentClass();
    }

    public function 
__wakeup()
    {
        
/**
         * This does not add __wakeup method support. It's a blind method and any
         * expected __wakeup work will NOT be performed. It merely cuts off
         * annoying errors where a __wakeup exists but is not essential when
         * mocking
         */
    
}

    public function 
mockery_getMethod($name)
    {
        foreach (
$this->mockery_getMethods() as $method) {
            if (
$method->getName() == $name) {
                return 
$method;
            }
        }

        return 
null;
    }

    public function 
shouldHaveReceived($method$args null)
    {
        
$expectation = new \Mockery\VerificationExpectation($this$method);
        if (
null !== $args) {
            
$expectation->withArgs($args);
        }
        
$expectation->atLeast()->once();
        
$director = new \Mockery\VerificationDirector($this->_mockery_getReceivedMethodCalls(), $expectation);
        
$director->verify();
        return 
$director;
    }

    public function 
shouldNotHaveReceived($method$args null)
    {
        
$expectation = new \Mockery\VerificationExpectation($this$method);
        if (
null !== $args) {
            
$expectation->withArgs($args);
        }
        
$expectation->never();
        
$director = new \Mockery\VerificationDirector($this->_mockery_getReceivedMethodCalls(), $expectation);
        
$director->verify();
        return 
null;
    }

    protected static function 
_mockery_handleStaticMethodCall($method, array $args)
    {
        try {
            
$associatedRealObject = \Mockery::fetchMock(__CLASS__);
            return 
$associatedRealObject->__call($method$args);
        } catch (\
BadMethodCallException $e) {
            throw new \
BadMethodCallException(
                
'Static method ' $associatedRealObject->mockery_getName() . '::' $method
                
'() does not exist on this mock object'
            
);
        }
    }

    protected function 
_mockery_getReceivedMethodCalls()
    {
        return 
$this->_mockery_receivedMethodCalls ?: $this->_mockery_receivedMethodCalls = new \Mockery\ReceivedMethodCalls();
    }

    protected function 
_mockery_handleMethodCall($method, array $args)
    {
        
$this->_mockery_getReceivedMethodCalls()->push(new \Mockery\MethodCall($method$args));

        
$rm $this->mockery_getMethod($method);
        if (
$rm && $rm->isProtected() && !$this->_mockery_allowMockingProtectedMethods) {
            if (
$rm->isAbstract()) {
                return;
            }

            try {
                
$prototype $rm->getPrototype();
                if (
$prototype->isAbstract()) {
                    return;
                }
            } catch (\
ReflectionException $re) {
                
// noop - there is no hasPrototype method
            
}

            return 
call_user_func_array("parent::$method"$args);
        }

        if (isset(
$this->_mockery_expectations[$method])
        && !
$this->_mockery_disableExpectationMatching) {
            
$handler $this->_mockery_expectations[$method];

            try {
                return 
$handler->call($args);
            } catch (\
Mockery\Exception\NoMatchingExpectationException $e) {
                if (!
$this->_mockery_ignoreMissing && !$this->_mockery_deferMissing) {
                    throw 
$e;
                }
            }
        }

        if (!
is_null($this->_mockery_partial) && method_exists($this->_mockery_partial$method)) {
            return 
call_user_func_array(array($this->_mockery_partial$method), $args);
        } elseif (
$this->_mockery_deferMissing && is_callable("parent::$method")) {
            return 
call_user_func_array("parent::$method"$args);
        } elseif (
$method == '__toString') {
            
// __toString is special because we force its addition to the class API regardless of the
            // original implementation.  Thus, we should always return a string rather than honor
            // _mockery_ignoreMissing and break the API with an error.
            
return sprintf("%s#%s"__CLASS__spl_object_hash($this));
        } elseif (
$this->_mockery_ignoreMissing) {
            if (\
Mockery::getConfiguration()->mockingNonExistentMethodsAllowed() || (method_exists($this->_mockery_partial$method) || is_callable("parent::$method"))) {
                if (
$this->_mockery_defaultReturnValue instanceof \Mockery\Undefined) {
                    return 
call_user_func_array(array($this->_mockery_defaultReturnValue$method), $args);
                } else {
                    return 
$this->_mockery_defaultReturnValue;
                }
            }
        }
        throw new \
BadMethodCallException(
            
'Method ' __CLASS__ '::' $method '() does not exist on this mock object'
        
);
    }

    protected function 
mockery_getMethods()
    {
        if (static::
$_mockery_methods) {
            return static::
$_mockery_methods;
        }

        
$methods = array();

        if (isset(
$this->_mockery_partial)) {
            
$reflected = new \ReflectionObject($this->_mockery_partial);
            
$methods $reflected->getMethods();
        } else {
            
$reflected = new \ReflectionClass($this);
            foreach (
$reflected->getMethods() as $method) {
                try {
                    
$methods[] = $method->getPrototype();
                } catch (\
ReflectionException $re) {
                    
/**
                     * For some reason, private methods don't have a prototype
                     */
                    
if ($method->isPrivate()) {
                        
$methods[] = $method;
                    }
                }
            }
        }

        return static::
$_mockery_methods $methods;
    }

    
/**
     * @return array
     */
    
private function getNonPublicMethods()
    {
        return 
array_map(
            function (
$method) {
                return 
$method->getName();
            },
            
array_filter($this->mockery_getMethods(), function ($method) {
                return !
$method->isPublic();
            })
        );
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0368 ]--