18 lines
297 B
PHP
18 lines
297 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
/**
|
|
* Hide sections from the about command.
|
|
*
|
|
* Possible values are: "environment", "cache", "drivers", "livewire
|
|
*/
|
|
'hide' => [
|
|
// 'environment',
|
|
// 'cache',
|
|
// 'drivers',
|
|
'livewire',
|
|
],
|
|
];
|