Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.10.50
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
facade /
flare-client-php /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Concerns
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Context
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Contracts
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Enums
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Glows
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Http
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Middleware
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Solutions
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Stacktrace
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Time
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Truncation
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Api.php
1.65
KB
-rw-r--r--
2020-11-17 16:24
Flare.php
6.35
KB
-rw-r--r--
2020-11-17 16:24
Frame.php
1.25
KB
-rw-r--r--
2020-11-17 16:24
Report.php
6.62
KB
-rw-r--r--
2020-11-17 16:24
View.php
1.09
KB
-rw-r--r--
2020-11-17 16:24
helpers.php
514
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php namespace Facade\FlareClient; use Facade\FlareClient\Stacktrace\Codesnippet; class Frame { /** @var string */ private $file; /** @var int */ private $lineNumber; /** @var string */ private $method; /** @var string */ private $class; public function __construct( string $file, int $lineNumber, string $method = null, string $class = null ) { $this->file = $file; $this->lineNumber = $lineNumber; $this->method = $method; $this->class = $class; } public function toArray(): array { $codeSnippet = (new Codesnippet()) ->snippetLineCount(9) ->surroundingLine($this->lineNumber) ->get($this->file); return [ 'line_number' => $this->lineNumber, 'method' => $this->getFullMethod(), 'code_snippet' => $codeSnippet, 'file' => $this->file, ]; } private function getFullMethod(): string { $method = $this->method; if ($class = $this->class ?? false) { $method = "{$class}::{$method}"; } return $method; } public function getFile(): string { return $this->file; } }