One Hat Cyber Team
Your IP :
3.16.143.199
Server IP :
162.241.123.123
Server :
Linux sh016.hostgator.in 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Server Software :
Apache
PHP Version :
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home1
/
saicsazq
/
portal.smhtechlabs.com
/
app
/
Config
/
View File Name :
Kint.php
<?php namespace Config; use Kint\Parser\ConstructablePluginInterface; use Kint\Renderer\AbstractRenderer; use Kint\Renderer\Rich\TabPluginInterface; use Kint\Renderer\Rich\ValuePluginInterface; /** * -------------------------------------------------------------------------- * Kint * -------------------------------------------------------------------------- * * We use Kint's `RichRenderer` and `CLIRenderer`. This area contains options * that you can set to customize how Kint works for you. * * @see https://kint-php.github.io/kint/ for details on these settings. */ class Kint { /* |-------------------------------------------------------------------------- | Global Settings |-------------------------------------------------------------------------- */ /** * @var list<class-string<ConstructablePluginInterface>|ConstructablePluginInterface>|null */ public $plugins; public int $maxDepth = 6; public bool $displayCalledFrom = true; public bool $expanded = false; /* |-------------------------------------------------------------------------- | RichRenderer Settings |-------------------------------------------------------------------------- */ public string $richTheme = 'aante-light.css'; public bool $richFolder = false; public int $richSort = AbstractRenderer::SORT_FULL; /** * @var array<string, class-string<ValuePluginInterface>>|null */ public $richObjectPlugins; /** * @var array<string, class-string<TabPluginInterface>>|null */ public $richTabPlugins; /* |-------------------------------------------------------------------------- | CLI Settings |-------------------------------------------------------------------------- */ public bool $cliColors = true; public bool $cliForceUTF8 = false; public bool $cliDetectWidth = true; public int $cliMinWidth = 40; }