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