1 | <?php |
||
2 | |||
3 | return [ |
||
4 | "enabled" => env("TODOBAR_ENABLED", true), |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
5 | "start_visible" => true, |
||
6 | "overlay" => true, |
||
7 | "dark_mode" => false, |
||
8 | "storage" => [ |
||
9 | "engine" => \TPaksu\TodoBar\Storage\JSONStorage::class, |
||
10 | "params" => [ |
||
11 | "file" => "items.json", |
||
12 | ], |
||
13 | ], |
||
14 | ]; |
||
15 |