Issues (8)

config/amocrm-api.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * @author Anton Kartsev <[email protected]>
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 */
8
9
declare(strict_types=1);
10
11
return [
12
13
    /*
14
    |--------------------------------------------------------------------------
15
    | Авторизация в системе amoCRM
16
    |--------------------------------------------------------------------------
17
    |
18
    | Эти параметры необходимы для авторизации в системе amoCRM.
19
    | - Поддомен компании. Приставка в домене перед .amocrm.ru;
20
    | - Логин пользователя. В качестве логина в системе используется e-mail;
21
    | - Ключ пользователя, который можно получить на странице редактирования
22
    |   профиля пользователя.
23
    |
24
    */
25
26
    'domain' => env('AMO_DOMAIN', 'domain'),
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

26
    'domain' => /** @scrutinizer ignore-call */ env('AMO_DOMAIN', 'domain'),
Loading history...
27
    'login'  => env('AMO_LOGIN', '[email protected]'),
28
    'hash'   => env('AMO_HASH', ''),
29
];
30