Issues (2)

config/knet.php (1 issue)

1
<?php
2
3
return [
4
    'production_url'    => env('KENT_PRODUCTION_URL', 'https://kpay.com.kw/kpg/PaymentHTTP.htm'),
5
    'development_url'   => env('KENT_PRODUCTION_URL', 'https://kpaytest.com.kw/kpg/PaymentHTTP.htm'),
6
    'transport_id'      => env('KENT_TRANSPORT_ID'),
7
    'transport_password'=> env('KENT_TRANSPORT_PASSWORD'),
8
    'response_url'      => url('/knet'),
0 ignored issues
show
The function url 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

8
    'response_url'      => /** @scrutinizer ignore-call */ url('/knet'),
Loading history...
9
    'error_url'         => url('/knet'),
10
    'action_code'       => env('KENT_ACTION_CODE', 1),
11
    'resource_key'      => env('KENT_RESOURCE_KEY'),
12
    'language'          => env('KENT_LANGUAGE', 'USA'),
13
    'currency'          => env('KENT_CURRENCY', 414),
14
];
15