Issues (27)

config/bookwhen.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
5
    /*
6
    |--------------------------------------------------------------------------
7
    | Bookwhen API Key
8
    |--------------------------------------------------------------------------
9
    |
10
    | Here you may specify your Bookwhen API Key. This will be
11
    | used to authenticate with the Bookwhen API.
12
    */
13
14
    'api_key' => env('BOOKWHEN_API_KEY'),
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('BOOKWHEN_API_KEY'),
Loading history...
15
    
16
    /*
17
     |--------------------------------------------------------------------------
18
     | Bookwhen route prefix and middleware
19
     |--------------------------------------------------------------------------
20
     |
21
     | Here you may specify a reoute prefix and middleware for the default 
22
     | routes.
23
     */
24
    
25
    'prefix' => 'bookwhen',
26
    'middleware' => ['web']
27
];
28