Completed
Push — master ( 857394...4794c5 )
by Mahmoud
03:25
created
app/Port/Exception/Abstracts/Exception.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     /**
41 41
      * Exception constructor.
42 42
      *
43
-     * @param null            $message
43
+     * @param string            $message
44 44
      * @param null            $errors
45 45
      * @param null            $statusCode
46 46
      * @param int             $code
Please login to merge, or discard this patch.
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.
Stripe/Data/Migrations/2016_07_08_110947_create_stripe_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('stripe_accounts', function (Blueprint $table) {
21
+        Schema::create('stripe_accounts', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
             $table->string('customer_id');
24 24
             $table->string('card_id')->nullable();
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/Port/Email/Abstracts/MailsAbstract.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function send($data = [])
63 63
     {
64
-        if(!$this->fromEmail || !$this->toEmail){
64
+        if (!$this->fromEmail || !$this->toEmail) {
65 65
             throw new EmailIsMissedException();
66 66
         }
67 67
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         // check if sending emails is enabled and if this is not running a testing environment
71 71
         if (Config::get('mail.enabled')) {
72 72
 
73
-            Mail::queue('EmailTemplates.' . $this->template, $data, function ($m) {
73
+            Mail::queue('EmailTemplates.' . $this->template, $data, function($m) {
74 74
                 $m->from($this->fromEmail, $this->fromName);
75 75
                 $m->to($this->toEmail, $this->toName)
76 76
                     ->subject($this->subject);
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-     * @param $subject
82
+     * @param string $subject
83 83
      */
84 84
     public function setSubject($subject)
85 85
     {
Please login to merge, or discard this patch.
app/Port/Middleware/Http/Localization.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $locale = $request->header('Content-Language');
39 39
 
40 40
         // if the header is missed
41
-        if(!$locale){
41
+        if (!$locale) {
42 42
             // take the default local language
43 43
             $locale = $this->app->config->get('app.locale');
44 44
         }
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.