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

namespace Illuminate\Database;

use 
Illuminate\Console\Command;
use 
Illuminate\Container\Container;

abstract class 
Seeder
{
    
/**
     * The container instance.
     *
     * @var \Illuminate\Container\Container
     */
    
protected $container;

    
/**
     * The console command instance.
     *
     * @var \Illuminate\Console\Command
     */
    
protected $command;

    
/**
     * Run the database seeds.
     *
     * @return void
     */
    
abstract public function run();

    
/**
     * Seed the given connection from the given path.
     *
     * @param  string  $class
     * @return void
     */
    
public function call($class)
    {
        
$this->resolve($class)->run();

        if (isset(
$this->command)) {
            
$this->command->getOutput()->writeln("<info>Seeded:</info> $class");
        }
    }

    
/**
     * Resolve an instance of the given seeder class.
     *
     * @param  string  $class
     * @return \Illuminate\Database\Seeder
     */
    
protected function resolve($class)
    {
        if (isset(
$this->container)) {
            
$instance $this->container->make($class);

            
$instance->setContainer($this->container);
        } else {
            
$instance = new $class;
        }

        if (isset(
$this->command)) {
            
$instance->setCommand($this->command);
        }

        return 
$instance;
    }

    
/**
     * Set the IoC container instance.
     *
     * @param  \Illuminate\Container\Container  $container
     * @return $this
     */
    
public function setContainer(Container $container)
    {
        
$this->container $container;

        return 
$this;
    }

    
/**
     * Set the console command instance.
     *
     * @param  \Illuminate\Console\Command  $command
     * @return $this
     */
    
public function setCommand(Command $command)
    {
        
$this->command $command;

        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.0465 ]--