2020-05-27 18:46:16 +02:00
|
|
|
<?php namespace Config;
|
|
|
|
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
use Kint\Renderer\Renderer;
|
|
|
|
|
|
|
|
class Kint extends BaseConfig
|
|
|
|
{
|
2020-06-10 15:00:12 +00:00
|
|
|
/*
|
2020-05-27 18:46:16 +02:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Kint
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| We use Kint's RichRenderer and CLIRenderer. This area contains options
|
|
|
|
| that you can set to customize how Kint works for you.
|
|
|
|
|
|
|
|
|
| For details on these settings, see Kint's docs:
|
|
|
|
| https://kint-php.github.io/kint/
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
/*
|
2020-05-27 18:46:16 +02:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Global Settings
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
public $plugins = null;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
public $maxDepth = 6;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
public $displayCalledFrom = true;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
public $expanded = false;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
/*
|
2020-05-27 18:46:16 +02:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| RichRenderer Settings
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
2020-06-10 15:00:12 +00:00
|
|
|
public $richTheme = 'aante-light.css';
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
public $richFolder = false;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
public $richSort = Renderer::SORT_FULL;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
public $richObjectPlugins = null;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
public $richTabPlugins = null;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
/*
|
2020-05-27 18:46:16 +02:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| CLI Settings
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
2020-06-10 15:00:12 +00:00
|
|
|
public $cliColors = true;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
public $cliForceUTF8 = false;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
public $cliDetectWidth = true;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
public $cliMinWidth = 40;
|
2020-05-27 18:46:16 +02:00
|
|
|
}
|