Completed
Pull Request — master (#20)
by Florian
02:20
created
Model/UiComponent/DataProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
         array $meta = [],
71 71
         array $data = []
72 72
     ) {
73
-        $this->databaseHelper = $databaseHelper;// needs to be in front of constructor, doesnt work otherwise for no apparent reason
73
+        $this->databaseHelper = $databaseHelper; // needs to be in front of constructor, doesnt work otherwise for no apparent reason
74 74
         parent::__construct($name, $primaryFieldName, $requestFieldName, $reporting, $searchCritBuilder, $request, $filterBuilder, $meta, $data);
75 75
     }
76 76
 
Please login to merge, or discard this patch.
Model/PayoneConfig.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,8 +58,8 @@
 block discarded – undo
58 58
     const TRANSACTIONSTATUS_REMINDER = 'reminder';
59 59
     const TRANSACTIONSTATUS_VAUTHORIZATION = 'vauthorization';
60 60
     const TRANSACTIONSTATUS_VSETTLEMENT = 'vsettlement';
61
-    const TRANSACTIONSTATUS_TRANSFER= 'transfer';
62
-    const TRANSACTIONSTATUS_INVOICE= 'invoice';
61
+    const TRANSACTIONSTATUS_TRANSFER = 'transfer';
62
+    const TRANSACTIONSTATUS_INVOICE = 'invoice';
63 63
 
64 64
     /* Payment method codes */
65 65
     const METHOD_CREDITCARD = 'payone_creditcard';
Please login to merge, or discard this patch.
Model/ResourceModel/TransactionStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
         $aRequest = $oContext->getRequest()->getPostValue();
109 109
         $sRawStatus = serialize($aRequest);
110 110
         if (!Toolkit::isUTF8($sRawStatus)) {
111
-            $sRawStatus = utf8_encode($sRawStatus);// needed for serializing the array
111
+            $sRawStatus = utf8_encode($sRawStatus); // needed for serializing the array
112 112
         }
113 113
         $sOrderId = $oOrder !== null ? $oOrder->getIncrementId() : '';
114 114
         $this->getConnection()->insert(
Please login to merge, or discard this patch.
Setup/Tables/Transactionstatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
             'cardpan' => ['type' => Table::TYPE_TEXT, 'length' => 32, 'option' => []],
135 135
             'clearing_bankaccountholder' => ['type' => Table::TYPE_TEXT, 'length' => 255, 'option' => []],
136 136
             'clearing_bankaccount' => ['type' => Table::TYPE_TEXT, 'length' => 32, 'option' => []],
137
-            'clearing_bankcode' => ['type' => Table::TYPE_TEXT, 'length' => 32, 'option' => [],],
137
+            'clearing_bankcode' => ['type' => Table::TYPE_TEXT, 'length' => 32, 'option' => [], ],
138 138
             'clearing_bankname' => ['type' => Table::TYPE_TEXT, 'length' => 255, 'option' => []],
139 139
             'clearing_bankbic' => ['type' => Table::TYPE_TEXT, 'length' => 32, 'option' => []],
140 140
             'clearing_bankiban' => ['type' => Table::TYPE_TEXT, 'length' => 32, 'option' => []],
Please login to merge, or discard this patch.
Helper/Country.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
      * Returns formatted birthday if possible
117 117
      *
118 118
      * @param  DataObject $data
119
-     * @return string|bool
119
+     * @return string|false
120 120
      */
121 121
     protected function getFormattedBirthday(DataObject $data)
122 122
     {
Please login to merge, or discard this patch.