X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/spatie/flare-client-php/src
home
/
prisjneg
/
public_html
/
vendor
/
spatie
/
flare-client-php
/
src
/
📁
..
📄
Api.php
(1.82 KB)
📁
Concerns
📁
Context
📁
Contracts
📁
Enums
📄
Flare.php
(12.95 KB)
📁
FlareMiddleware
📄
Frame.php
(753 B)
📁
Glows
📁
Http
📄
Report.php
(11.77 KB)
📁
Solutions
📁
Support
📁
Time
📁
Truncation
📄
View.php
(1.41 KB)
📄
helpers.php
(678 B)
Editing: Frame.php
<?php namespace Spatie\FlareClient; use Spatie\Backtrace\Frame as SpatieFrame; class Frame { public static function fromSpatieFrame( SpatieFrame $frame, ): self { return new self($frame); } public function __construct( protected SpatieFrame $frame, ) { } public function toArray(): array { return [ 'file' => $this->frame->file, 'line_number' => $this->frame->lineNumber, 'method' => $this->frame->method, 'class' => $this->frame->class, 'code_snippet' => $this->frame->getSnippet(30), 'arguments' => $this->frame->arguments, 'application_frame' => $this->frame->applicationFrame, ]; } }
Upload File
Create Folder