!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:     MockInterface.php (5.74 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;

interface 
MockInterface
{

    
/**
     * Alternative setup method to constructor
     *
     * @param \Mockery\Container $container
     * @param object $partialObject
     * @return void
     */
    
public function mockery_init(\Mockery\Container $container null$partialObject null);

    
/**
     * Set expected method calls
     *
     * @param mixed ...
     * @return \Mockery\Expectation
     */
    
public function shouldReceive();

    
/**
     * Shortcut method for setting an expectation that a method should not be called.
     *
     * @param mixed ...
     * @return \Mockery\Expectation
     */
    
public function shouldNotReceive();

    
/**
     * Allows additional methods to be mocked that do not explicitly exist on mocked class
     * @param String $method name of the method to be mocked
     */
    
public function shouldAllowMockingMethod($method);

    
/**
     * 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);

    
/**
     * @return Mock
     */
    
public function shouldAllowMockingProtectedMethods();

    
/**
     * Set mock to defer unexpected methods to its parent if possible
     *
     * @return Mock
     */
    
public function shouldDeferMissing();
    
    
/**
     * Set mock to defer unexpected methods to its parent if possible
     *
     * @return Mock
     */
    
public function makePartial();

    
/**
     * @param $method
     * @param null $args
     * @return \Mockery\Expectation
     */
    
public function shouldHaveReceived($method$args null);

    
/**
     * @param $method
     * @param null $args
     * @return null
     */
    
public function shouldNotHaveReceived($method$args null);


    
/**
     * In the event shouldReceive() accepting an array of methods/returns
     * this method will switch them from normal expectations to default
     * expectations
     *
     * @return self
     */
    
public function byDefault();

    
/**
     * Capture calls to this mock and check against expectations
     *
     * @param string $method
     * @param array $args
     * @return mixed
     */
        /**
         * Unfortunately we need to allow type hinting agnostic __call()
         * definitions since any interface/class being mocked can go either
         * way.
         */
    //public function __call($method, array $args);

    /**
     * Iterate across all expectation directors and validate each
     *
     * @throws \Mockery\CountValidator\Exception
     * @return void
     */
    
public function mockery_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();

    
/**
     * Set ordering for a group
     *
     * @param mixed $group
     * @param int $order
     */
    
public function mockery_setGroup($group$order);

    
/**
     * Fetch array of ordered groups
     *
     * @return array
     */
    
public function mockery_getGroups();

    
/**
     * Set current ordered number
     *
     * @param int $order
     */
    
public function mockery_setCurrentOrder($order);

    
/**
     * Get current ordered number
     *
     * @return int
     */
    
public function mockery_getCurrentOrder();

    
/**
     * Validate the current mock's ordering
     *
     * @param string $method
     * @param int $order
     * @throws \Mockery\Exception
     * @return void
     */
    
public function mockery_validateOrder($method$order);

    
/**
     * Gets the count of expectations for this mock
     *
     * @return int
     */
    
public function mockery_getExpectationCount();

    
/**
     * Return the expectations director for the given method
     *
     * @var string $method
     * @return \Mockery\ExpectationDirector|null
     */
    
public function mockery_setExpectationsFor($method, \Mockery\ExpectationDirector $director);

    
/**
     * Return the expectations director for the given method
     *
     * @var string $method
     * @return \Mockery\ExpectationDirector|null
     */
    
public function mockery_getExpectationsFor($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);

    
/**
     * Return the container for this mock
     *
     * @return \Mockery\Container
     */
    
public function mockery_getContainer();

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

    
/**
     * @return array
     */
    
public function mockery_getMockableProperties();

    
/**
     * @return string[]
     */
    
public function mockery_getMockableMethods();

    
/**
     * @return bool
     */
    
public function mockery_isAnonymous();
}

:: 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.0381 ]--