Issues (9)

src/config/tvdb.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
5
    /*
6
    |--------------------------------------------------------------------------
7
    | TVDB API key
8
    |--------------------------------------------------------------------------
9
    |
10
    | This value is the API that was provided to you by TVDB
11
    |
12
    */
13
14
    'api_key' => env('TVDB_API_KEY', null),
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

14
    'api_key' => /** @scrutinizer ignore-call */ env('TVDB_API_KEY', null),
Loading history...
15
16
    /*
17
    |--------------------------------------------------------------------------
18
    | TVDB username
19
    |--------------------------------------------------------------------------
20
    |
21
    | This value is your TVDB username
22
    |
23
    */
24
25
    'username' => env('TVDB_USERNAME', null),
26
27
    /*
28
    |--------------------------------------------------------------------------
29
    | TVDB user key
30
    |--------------------------------------------------------------------------
31
    |
32
    | This value is the user key that was provided to you by TVDB
33
    |
34
    */
35
36
    'user_key' => env('TVDB_USER_KEY', null)
37
];