Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
barryvdh
/
laravel-debugbar
/
src
/
Twig
/
Extension
Location:
/home/zoteqbgb/public_html/vendor/barryvdh/laravel-debugbar/src/Twig/Extension
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: Debug.php
<?php namespace Barryvdh\Debugbar\Twig\Extension; use DebugBar\Bridge\Twig\DebugTwigExtension; use Illuminate\Foundation\Application; use Twig\Environment; /** * Access debugbar debug in your Twig templates. */ class Debug extends DebugTwigExtension { protected $app; /** * Create a new debug extension. * * @param \Illuminate\Foundation\Application $app */ public function __construct(Application $app) { $this->app = $app; parent::__construct(null); } public function debug(Environment $env, $context) { if ($this->app->bound('debugbar') && $this->app['debugbar']->hasCollector('messages')) { $this->messagesCollector = $this->app['debugbar']['messages']; } return parent::debug($env, $context); } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
Debug.php
814 bytes
0644
2025-02-25 20:25
âï¸
ðï¸
Rename
Dump.php
188 bytes
0644
2025-02-25 20:25
âï¸
ðï¸
Rename
Stopwatch.php
1,660 bytes
0644
2025-02-25 20:25
âï¸
ðï¸
Rename
Chang
Apply