@@ -18,7 +18,7 @@ |
||
18 | 18 | */ |
19 | 19 | public function up() |
20 | 20 | { |
21 | - Schema::create('paypal_accounts', function (Blueprint $table) { |
|
21 | + Schema::create('paypal_accounts', function(Blueprint $table) { |
|
22 | 22 | $table->increments('id'); |
23 | 23 | |
24 | 24 | $table->string('some_id'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up() |
13 | 13 | { |
14 | - Schema::create('settings', function (Blueprint $table) { |
|
14 | + Schema::create('settings', function(Blueprint $table) { |
|
15 | 15 | $table->increments('id'); |
16 | 16 | $table->string('key')->unique(); |
17 | 17 | $table->string('value'); |
@@ -25,7 +25,7 @@ |
||
25 | 25 | $user = $this->registerAndLoginTestingUser($userDetails); |
26 | 26 | |
27 | 27 | $data = [ |
28 | - // TODO: To Be Continue... |
|
28 | + // TODO: To Be Continue... |
|
29 | 29 | ]; |
30 | 30 | |
31 | 31 | // send the HTTP request |
@@ -65,7 +65,7 @@ |
||
65 | 65 | */ |
66 | 66 | public function run($email, $userId = null) |
67 | 67 | { |
68 | - if(!$userId){ |
|
68 | + if (!$userId) { |
|
69 | 69 | $userId = $this->getAuthenticatedUserTask->run()->id; |
70 | 70 | } |
71 | 71 |
@@ -1,40 +1,40 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return array( |
4 | - # Account credentials from developer portal |
|
5 | - 'Account' => array( |
|
6 | - 'ClientId' => env('PAYPAL_ID'), |
|
7 | - 'ClientSecret' => env('PAYPAL_SECRET'), |
|
8 | - ), |
|
4 | + # Account credentials from developer portal |
|
5 | + 'Account' => array( |
|
6 | + 'ClientId' => env('PAYPAL_ID'), |
|
7 | + 'ClientSecret' => env('PAYPAL_SECRET'), |
|
8 | + ), |
|
9 | 9 | |
10 | - # Connection Information |
|
11 | - 'Http' => array( |
|
10 | + # Connection Information |
|
11 | + 'Http' => array( |
|
12 | 12 | 'ConnectionTimeOut' => 30, |
13 | - 'Retry' => 1, |
|
14 | - //'Proxy' => 'http://[username:password]@hostname[:port][/path]', |
|
15 | - ), |
|
13 | + 'Retry' => 1, |
|
14 | + //'Proxy' => 'http://[username:password]@hostname[:port][/path]', |
|
15 | + ), |
|
16 | 16 | |
17 | - # Service Configuration |
|
18 | - 'Service' => array( |
|
19 | - # For integrating with the live endpoint, |
|
20 | - # change the URL to https://api.paypal.com! |
|
21 | - 'EndPoint' => 'https://api.sandbox.paypal.com', |
|
22 | - ), |
|
17 | + # Service Configuration |
|
18 | + 'Service' => array( |
|
19 | + # For integrating with the live endpoint, |
|
20 | + # change the URL to https://api.paypal.com! |
|
21 | + 'EndPoint' => 'https://api.sandbox.paypal.com', |
|
22 | + ), |
|
23 | 23 | |
24 | 24 | |
25 | - # Logging Information |
|
26 | - 'Log' => array( |
|
27 | - //'LogEnabled' => true, |
|
25 | + # Logging Information |
|
26 | + 'Log' => array( |
|
27 | + //'LogEnabled' => true, |
|
28 | 28 | |
29 | - # When using a relative path, the log file is created |
|
30 | - # relative to the .php file that is the entry point |
|
31 | - # for this request. You can also provide an absolute |
|
32 | - # path here |
|
33 | - //'FileName' => '../PayPal.log', |
|
29 | + # When using a relative path, the log file is created |
|
30 | + # relative to the .php file that is the entry point |
|
31 | + # for this request. You can also provide an absolute |
|
32 | + # path here |
|
33 | + //'FileName' => '../PayPal.log', |
|
34 | 34 | |
35 | - # Logging level can be one of FINE, INFO, WARN or ERROR |
|
36 | - # Logging is most verbose in the 'FINE' level and |
|
37 | - # decreases as you proceed towards ERROR |
|
38 | - //'LogLevel' => 'FINE', |
|
39 | - ), |
|
35 | + # Logging level can be one of FINE, INFO, WARN or ERROR |
|
36 | + # Logging is most verbose in the 'FINE' level and |
|
37 | + # decreases as you proceed towards ERROR |
|
38 | + //'LogLevel' => 'FINE', |
|
39 | + ), |
|
40 | 40 | ); |
@@ -18,7 +18,7 @@ |
||
18 | 18 | */ |
19 | 19 | public function up() |
20 | 20 | { |
21 | - Schema::create('applications', function (Blueprint $table) { |
|
21 | + Schema::create('applications', function(Blueprint $table) { |
|
22 | 22 | $table->increments('id'); |
23 | 23 | |
24 | 24 | $table->string('name'); |
@@ -4,7 +4,7 @@ |
||
4 | 4 | use App\Containers\Application\Models\Application; |
5 | 5 | use App\Containers\User\Models\User; |
6 | 6 | |
7 | -$factory->define(Application::class, function (Faker\Generator $faker) { |
|
7 | +$factory->define(Application::class, function(Faker\Generator $faker) { |
|
8 | 8 | |
9 | 9 | return [ |
10 | 10 | 'name' => $faker->name, |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | $token = str_replace('Bearer ', '', $request->header('authorization')); |
95 | 95 | |
96 | - if(!$token){ |
|
96 | + if (!$token) { |
|
97 | 97 | throw new AuthenticationFailedException('Empty Token!'); |
98 | 98 | } |
99 | 99 | |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | throw new UserNotPermittedException(); |
114 | 114 | } |
115 | 115 | |
116 | - }else{ |
|
116 | + } else { |
|
117 | 117 | return (App::make(\Dingo\Api\Http\Middleware\Auth::class))->handle($request, $next); |
118 | 118 | // another way to do handle this is by calling `$user = $this->jwtAuthAdapter->toUser($token);` |
119 | 119 | // and continuing the execution of this code till the last return, but to maintain consistency |
@@ -118,7 +118,7 @@ |
||
118 | 118 | throw new UserNotPermittedException(); |
119 | 119 | } |
120 | 120 | |
121 | - }else{ |
|
121 | + } else{ |
|
122 | 122 | return (App::make(\Dingo\Api\Http\Middleware\Auth::class))->handle($request, $next); |
123 | 123 | // another way to do handle this is by calling `$user = $this->jwtAuthAdapter->toUser($token);` |
124 | 124 | // and continuing the execution of this code till the last return, but to maintain consistency |
@@ -6,7 +6,6 @@ |
||
6 | 6 | use App\Containers\Paypal\Models\PaypalAccount; |
7 | 7 | use App\Containers\User\Models\User; |
8 | 8 | use App\Port\Task\Abstracts\Task; |
9 | -use Auth; |
|
10 | 9 | |
11 | 10 | /** |
12 | 11 | * Class CreatePaypalAccountObjectTask |