13 lines
389 B
PHP
13 lines
389 B
PHP
<?php
|
|
|
|
// phpcs:disable PSR1.Files.SideEffects
|
|
defined('SYSPATH') or die('No direct access allowed.');
|
|
// phpcs:enable PSR1.Files.SideEffects
|
|
/**
|
|
* @package Profiler
|
|
*
|
|
* Array of section names to display in the Profiler, TRUE to display all of them.
|
|
* Built in sections are benchmarks, database, session, post and cookies, custom sections can be used too.
|
|
*/
|
|
$config['show'] = true;
|