!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/queuepro/vendor/laravel/framework/src/Illuminate/Http/Resources/   drwxrwxr-x
Free 13.1 GB of 57.97 GB (22.59%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     DelegatesToResource.php (3.09 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Http\Resources;

use 
Exception;
use 
Illuminate\Support\Traits\ForwardsCalls;

trait 
DelegatesToResource
{
    use 
ForwardsCalls;

    
/**
     * Get the value of the resource's route key.
     *
     * @return mixed
     */
    
public function getRouteKey()
    {
        return 
$this->resource->getRouteKey();
    }

    
/**
     * Get the route key for the resource.
     *
     * @return string
     */
    
public function getRouteKeyName()
    {
        return 
$this->resource->getRouteKeyName();
    }

    
/**
     * Retrieve the model for a bound value.
     *
     * @param  mixed  $value
     * @param  string|null  $field
     * @return void
     *
     * @throws \Exception
     */
    
public function resolveRouteBinding($value$field null)
    {
        throw new 
Exception('Resources may not be implicitly resolved from route bindings.');
    }

    
/**
     * Retrieve the model for a bound value.
     *
     * @param  string  $childType
     * @param  mixed  $value
     * @param  string|null  $field
     * @return void
     *
     * @throws \Exception
     */
    
public function resolveChildRouteBinding($childType$value$field null)
    {
        throw new 
Exception('Resources may not be implicitly resolved from route bindings.');
    }

    
/**
     * Determine if the given attribute exists.
     *
     * @param  mixed  $offset
     * @return bool
     */
    
public function offsetExists($offset): bool
    
{
        return isset(
$this->resource[$offset]);
    }

    
/**
     * Get the value for a given offset.
     *
     * @param  mixed  $offset
     * @return mixed
     */
    
public function offsetGet($offset): mixed
    
{
        return 
$this->resource[$offset];
    }

    
/**
     * Set the value for a given offset.
     *
     * @param  mixed  $offset
     * @param  mixed  $value
     * @return void
     */
    
public function offsetSet($offset$value): void
    
{
        
$this->resource[$offset] = $value;
    }

    
/**
     * Unset the value for a given offset.
     *
     * @param  mixed  $offset
     * @return void
     */
    
public function offsetUnset($offset): void
    
{
        unset(
$this->resource[$offset]);
    }

    
/**
     * Determine if an attribute exists on the resource.
     *
     * @param  string  $key
     * @return bool
     */
    
public function __isset($key)
    {
        return isset(
$this->resource->{$key});
    }

    
/**
     * Unset an attribute on the resource.
     *
     * @param  string  $key
     * @return void
     */
    
public function __unset($key)
    {
        unset(
$this->resource->{$key});
    }

    
/**
     * Dynamically get properties from the underlying resource.
     *
     * @param  string  $key
     * @return mixed
     */
    
public function __get($key)
    {
        return 
$this->resource->{$key};
    }

    
/**
     * Dynamically pass method calls to the underlying resource.
     *
     * @param  string  $method
     * @param  array  $parameters
     * @return mixed
     */
    
public function __call($method$parameters)
    {
        return 
$this->forwardCallTo($this->resource$method$parameters);
    }
}

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