Completed
Push — master ( 4b871d...3ef7e6 )
by Davis
07:40
created

Davispeixoto/Laravel5Salesforce/config/config.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
return [
3
4
    /*
5
    |--------------------------------------------------------------------------
6
    | Your Salesforce credentials
7
    |--------------------------------------------------------------------------
8
    |
9
    |
10
    */
11
12
    // production
13
    'username' => env('SALESFORCE_USERNAME'),
14
    'password' => env('SALESFORCE_PASSWORD'),
15
    'token' => env('SALESFORCE_TOKEN'),
16
    'wsdl' => storage_path('app/' . env('SALESFORCE_WSDL', 'wsdl/enterprise.wsdl.xml'))
17
];
0 ignored issues
show
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
18