Issues (6)

src/config/config.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
    /*
5
    |----------------------------------------------------------------------------
6
    | SerpApi Key
7
    |----------------------------------------------------------------------------
8
    */
9
    'api_key' => env('SERPAPI_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

9
    'api_key' => /** @scrutinizer ignore-call */ env('SERPAPI_API_KEY', ''),
Loading history...
10
11
    /*
12
    |----------------------------------------------------------------------------
13
    | SerpApi Key
14
    |----------------------------------------------------------------------------
15
    */
16
    'search_engine' => env('SERPAPI_ENGINE', 'google'),
17
];
18