!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/local/wp/vendor/php-parallel-lint/php-parallel-lint/src/   drwxr-xr-x
Free 719.89 GB of 879.6 GB (81.84%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Result.php (3.42 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace JakubOnderka\PhpParallelLint;

use ReturnTypeWillChange;

class Result implements \JsonSerializable
{
    /** @var Error[] */
    private $errors;

    /** @var array */
    private $checkedFiles;

    /** @var array */
    private $skippedFiles;

    /** @var float */
    private $testTime;

    /**
     * @param Error[] $errors
     * @param array $checkedFiles
     * @param array $skippedFiles
     * @param float $testTime
     */
    public function __construct(array $errors, array $checkedFiles, array $skippedFiles, $testTime)
    {
        $this->errors = $errors;
        $this->checkedFiles = $checkedFiles;
        $this->skippedFiles = $skippedFiles;
        $this->testTime = $testTime;
    }

    /**
     * @return Error[]
     */
    public function getErrors()
    {
        return $this->errors;
    }

    /**
     * @return bool
     */
    public function hasError()
    {
        return !empty($this->errors);
    }

    /**
     * @return array
     */
    public function getFilesWithFail()
    {
        $filesWithFail = array();
        foreach ($this->errors as $error) {
            if (!$error instanceof SyntaxError) {
                $filesWithFail[] = $error->getFilePath();
            }
        }

        return $filesWithFail;
    }

    /**
     * @return int
     */
    public function getFilesWithFailCount()
    {
        return count($this->getFilesWithFail());
    }

    /**
     * @return bool
     */
    public function hasFilesWithFail()
    {
        return $this->getFilesWithFailCount() !== 0;
    }

    /**
     * @return array
     */
    public function getCheckedFiles()
    {
        return $this->checkedFiles;
    }

    /**
     * @return int
     */
    public function getCheckedFilesCount()
    {
        return count($this->checkedFiles);
    }

    /**
     * @return array
     */
    public function getSkippedFiles()
    {
        return $this->skippedFiles;
    }

    /**
     * @return int
     */
    public function getSkippedFilesCount()
    {
        return count($this->skippedFiles);
    }

    /**
     * @return array
     */
    public function getFilesWithSyntaxError()
    {
        $filesWithSyntaxError = array();
        foreach ($this->errors as $error) {
            if ($error instanceof SyntaxError) {
                $filesWithSyntaxError[] = $error->getFilePath();
            }
        }

        return $filesWithSyntaxError;
    }

    /**
     * @return int
     */
    public function getFilesWithSyntaxErrorCount()
    {
        return count($this->getFilesWithSyntaxError());
    }

    /**
     * @return bool
     */
    public function hasSyntaxError()
    {
        return $this->getFilesWithSyntaxErrorCount() !== 0;
    }

    /**
     * @return float
     */
    public function getTestTime()
    {
        return $this->testTime;
    }

    /**
     * (PHP 5 &gt;= 5.4.0)<br/>
     * Specify data which should be serialized to JSON
     * @link http://php.net/manual/en/jsonserializable.jsonserialize.php
     * @return mixed data which can be serialized by <b>json_encode</b>,
     * which is a value of any type other than a resource.
     */
    #[ReturnTypeWillChange]
    function jsonSerialize()
    {
        return array(
            'checkedFiles' => $this->getCheckedFiles(),
            'filesWithSyntaxError' => $this->getFilesWithSyntaxError(),
            'skippedFiles' => $this->getSkippedFiles(),
            'errors' => $this->getErrors(),
        );
    }


}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0098 ]--