Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| Kint | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace Config; |
| 4 | |
| 5 | use Kint\Parser\ConstructablePluginInterface; |
| 6 | use Kint\Renderer\Rich\TabPluginInterface; |
| 7 | use Kint\Renderer\Rich\ValuePluginInterface; |
| 8 | |
| 9 | /** |
| 10 | * -------------------------------------------------------------------------- |
| 11 | * Kint |
| 12 | * -------------------------------------------------------------------------- |
| 13 | * |
| 14 | * We use Kint's `RichRenderer` and `CLIRenderer`. This area contains options |
| 15 | * that you can set to customize how Kint works for you. |
| 16 | * |
| 17 | * @see https://kint-php.github.io/kint/ for details on these settings. |
| 18 | */ |
| 19 | class Kint |
| 20 | { |
| 21 | /* |
| 22 | |-------------------------------------------------------------------------- |
| 23 | | Global Settings |
| 24 | |-------------------------------------------------------------------------- |
| 25 | */ |
| 26 | |
| 27 | /** |
| 28 | * @var list<class-string<ConstructablePluginInterface>|ConstructablePluginInterface>|null |
| 29 | */ |
| 30 | public $plugins; |
| 31 | |
| 32 | public int $maxDepth = 6; |
| 33 | public bool $displayCalledFrom = true; |
| 34 | public bool $expanded = false; |
| 35 | |
| 36 | /* |
| 37 | |-------------------------------------------------------------------------- |
| 38 | | RichRenderer Settings |
| 39 | |-------------------------------------------------------------------------- |
| 40 | */ |
| 41 | public string $richTheme = 'aante-light.css'; |
| 42 | public bool $richFolder = false; |
| 43 | |
| 44 | /** |
| 45 | * @var array<string, class-string<ValuePluginInterface>>|null |
| 46 | */ |
| 47 | public $richObjectPlugins; |
| 48 | |
| 49 | /** |
| 50 | * @var array<string, class-string<TabPluginInterface>>|null |
| 51 | */ |
| 52 | public $richTabPlugins; |
| 53 | |
| 54 | /* |
| 55 | |-------------------------------------------------------------------------- |
| 56 | | CLI Settings |
| 57 | |-------------------------------------------------------------------------- |
| 58 | */ |
| 59 | public bool $cliColors = true; |
| 60 | public bool $cliForceUTF8 = false; |
| 61 | public bool $cliDetectWidth = true; |
| 62 | public int $cliMinWidth = 40; |
| 63 | } |