@@ -70,7 +70,7 @@ |
||
| 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 | |
@@ -58,8 +58,8 @@ |
||
| 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'; |
@@ -108,7 +108,7 @@ |
||
| 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( |
@@ -134,7 +134,7 @@ |
||
| 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' => []], |
@@ -116,7 +116,7 @@ |
||
| 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 | { |