Issues (33)

config/mta-h5.php (1 issue)

1
<?php
2
3
return [
4
5
    'response_type' => env('MTAH5_RESPONSE_TYPE', 'array'),
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

5
    'response_type' => /** @scrutinizer ignore-call */ env('MTAH5_RESPONSE_TYPE', 'array'),
Loading history...
6
    'app_id'        => env('MTAH5_APP_ID', ''),
7
    'secret_key'    => env('MTAH5_SECRET_KEY', ''),
8
9
];
10