Skip to content
Snippets Groups Projects
Kint.php 1.57 KiB
Newer Older
  • Learn to ignore specific revisions
  • 
    use CodeIgniter\Config\BaseConfig;
    use Kint\Renderer\Renderer;
    
    class Kint extends BaseConfig
    {
    
        |--------------------------------------------------------------------------
        | 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/
        |
        */
    
        |--------------------------------------------------------------------------
        | Global Settings
        |--------------------------------------------------------------------------
        */
    
        public $displayCalledFrom = true;
    
        |--------------------------------------------------------------------------
        | RichRenderer Settings
        |--------------------------------------------------------------------------
        */
    
        public $richTheme = 'aante-light.css';
    
        public $richFolder = false;
    
        public $richSort = Renderer::SORT_FULL;
    
        public $richObjectPlugins = null;
    
        public $richTabPlugins = null;
    
        |--------------------------------------------------------------------------
        | CLI Settings
        |--------------------------------------------------------------------------
        */
    
        public $cliForceUTF8 = false;
    
        public $cliDetectWidth = true;