Issues (35)

src/Laravel/config.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the EasyWeChatComposer.
7
 *
8
 * (c) mingyoung <[email protected]>
9
 *
10
 * This source file is subject to the MIT license that is bundled
11
 * with this source code in the file LICENSE.
12
 */
13
14
return [
15
16
    'encryption' => [
17
18
        'key' => env('EASYWECHAT_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

18
        'key' => /** @scrutinizer ignore-call */ env('EASYWECHAT_KEY'),
Loading history...
19
20
    ],
21
22
    'delegation' => [
23
24
        'enabled' => env('EASYWECHAT_DELEGATION', false),
25
26
        'host' => env('EASYWECHAT_DELEGATION_HOST'),
27
    ],
28
29
];
30