Server IP : 66.29.132.124 / Your IP : 3.15.211.55 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/vendor/beyondcode/laravel-dump-server/src/ |
Upload File : |
<?php namespace BeyondCode\DumpServer; use Illuminate\Support\ServiceProvider; use Symfony\Component\VarDumper\VarDumper; use Symfony\Component\VarDumper\Server\Connection; use Symfony\Component\VarDumper\Server\DumpServer; use Symfony\Component\VarDumper\Dumper\ContextProvider\SourceContextProvider; class DumpServerServiceProvider extends ServiceProvider { /** * Bootstrap the application services. * * @return void */ public function boot() { if ($this->app->runningInConsole()) { $this->publishes([ __DIR__.'/../config/config.php' => config_path('debug-server.php'), ], 'config'); } } /** * Register the application services. * * @return void */ public function register() { $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'debug-server'); $this->app->bind('command.dumpserver', DumpServerCommand::class); $this->commands([ 'command.dumpserver', ]); $host = $this->app['config']->get('debug-server.host'); $this->app->when(DumpServer::class)->needs('$host')->give($host); $connection = new Connection($host, [ 'request' => new RequestContextProvider($this->app['request']), 'source' => new SourceContextProvider('utf-8', base_path()), ]); VarDumper::setHandler(function ($var) use ($connection) { $this->app->makeWith(Dumper::class, ['connection' => $connection])->dump($var); }); } }