Completed
Push — master ( 857394...4794c5 )
by Mahmoud
03:25
created
Paypal/Data/Migrations/2016_07_11_120947_create_paypal_accounts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
Settings/Data/Migrations/2016_20_09_030201_create_settings_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
app/Containers/Paypal/UI/API/Tests/Functional/CreatePaypalAccountTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
app/Containers/Email/Actions/SetUserEmailWithConfirmationAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
app/Containers/Paypal/Configs/paypal_payment.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -1,40 +1,40 @@
 block discarded – undo
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
 );
Please login to merge, or discard this patch.
Application/Data/Migrations/2016_08_29_110944_create_applications_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
app/Containers/Application/Data/Factories/ApplicationFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
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,
Please login to merge, or discard this patch.
app/Containers/Application/Middlewares/ApplicationAuthentication.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
app/Containers/Paypal/Tasks/CreatePaypalAccountObjectTask.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.