Issues (37)

src/config/todobar.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
    "enabled" => env("TODOBAR_ENABLED", true),
0 ignored issues
show
The function env was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

4
    "enabled" => /** @scrutinizer ignore-call */ env("TODOBAR_ENABLED", true),
Loading history...
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