@@ -22,7 +22,7 @@ |
||
22 | 22 | $configuration = new Configuration(); |
23 | 23 | $config = $this->processConfiguration($configuration, $configs); |
24 | 24 | |
25 | - $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
25 | + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
26 | 26 | $loader->load('services.yml'); |
27 | 27 | } |
28 | 28 | } |
@@ -36,7 +36,7 @@ |
||
36 | 36 | Logger $logger, |
37 | 37 | UserTranslator $userTranslator |
38 | 38 | ) { |
39 | - parent::__construct($clientId, $clientPassword, $baseUrl,$mangoPayApi, $logger); |
|
39 | + parent::__construct($clientId, $clientPassword, $baseUrl, $mangoPayApi, $logger); |
|
40 | 40 | $this->userTranslator = $userTranslator; |
41 | 41 | } |
42 | 42 |
@@ -32,7 +32,7 @@ |
||
32 | 32 | Logger $logger |
33 | 33 | |
34 | 34 | ) { |
35 | - parent::__construct($clientId, $clientPassword, $baseUrl,$mangoPayApi, $logger); |
|
35 | + parent::__construct($clientId, $clientPassword, $baseUrl, $mangoPayApi, $logger); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | public function list() |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | KycDocumentPageTranslator $kycDocumentPageTranslator |
47 | 47 | ) { |
48 | 48 | $this->kycDocumentPageTranslator = $kycDocumentPageTranslator; |
49 | - parent::__construct($clientId, $clientPassword, $baseUrl,$mangoPayApi, $logger); |
|
49 | + parent::__construct($clientId, $clientPassword, $baseUrl, $mangoPayApi, $logger); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
@@ -58,10 +58,10 @@ discard block |
||
58 | 58 | try { |
59 | 59 | $kycDocumentPage = $this->mangoPayApi->Users->CreateKycPageFromFile($kycDocumentPage->getOwnerId(), $kycDocumentPage->getKycDocumentId(), $kycDocumentPage->getFilePath()); |
60 | 60 | |
61 | - } catch(ResponseException $e) { |
|
61 | + } catch (ResponseException $e) { |
|
62 | 62 | $this->logger->addCritical($e->getMessage(), ['code' => $e->getCode(), 'details' => $e->GetErrorDetails()]); |
63 | 63 | return new PartFireException($e->getMessage(), $e->getCode()); |
64 | - } catch(Exception $e) { |
|
64 | + } catch (Exception $e) { |
|
65 | 65 | $this->logger->addError($e->getMessage()); |
66 | 66 | return new PartFireException($e->getMessage(), $e->getCode()); |
67 | 67 | } |
@@ -53,17 +53,21 @@ |
||
53 | 53 | $transfer->setResultCode($mangoPayTransfer->ResultCode); |
54 | 54 | $transfer->setResultMessage($mangoPayTransfer->ResultMessage); |
55 | 55 | |
56 | - if (isset($mangoPayTransfer->Fees->Currency)) |
|
57 | - $transfer->setFeeCurrency($mangoPayTransfer->Fees->Currency); |
|
56 | + if (isset($mangoPayTransfer->Fees->Currency)) { |
|
57 | + $transfer->setFeeCurrency($mangoPayTransfer->Fees->Currency); |
|
58 | + } |
|
58 | 59 | |
59 | - if (isset($mangoPayTransfer->Fees->Amount)) |
|
60 | - $transfer->setFeeAmount($mangoPayTransfer->Fees->Amount); |
|
60 | + if (isset($mangoPayTransfer->Fees->Amount)) { |
|
61 | + $transfer->setFeeAmount($mangoPayTransfer->Fees->Amount); |
|
62 | + } |
|
61 | 63 | |
62 | - if (isset($mangoPayTransfer->DebitedFunds->Currency)) |
|
63 | - $transfer->setDebitedCurrency($mangoPayTransfer->DebitedFunds->Currency); |
|
64 | + if (isset($mangoPayTransfer->DebitedFunds->Currency)) { |
|
65 | + $transfer->setDebitedCurrency($mangoPayTransfer->DebitedFunds->Currency); |
|
66 | + } |
|
64 | 67 | |
65 | - if (isset($mangoPayTransfer->DebitedFunds->Amount)) |
|
66 | - $transfer->setDebitedAmount($mangoPayTransfer->DebitedFunds->Amount); |
|
68 | + if (isset($mangoPayTransfer->DebitedFunds->Amount)) { |
|
69 | + $transfer->setDebitedAmount($mangoPayTransfer->DebitedFunds->Amount); |
|
70 | + } |
|
67 | 71 | |
68 | 72 | return $transfer; |
69 | 73 | } |
@@ -74,7 +74,7 @@ |
||
74 | 74 | // Hook Variables |
75 | 75 | // https://docs.mangopay.com/endpoints/v2.01/hooks#e246_the-hook-object |
76 | 76 | const HOOK_EVENT_TYPE = "EventType"; |
77 | - const HOOK_RESOURCE_ID = "RessourceId"; // Known spelling mistake in MangoPay Api |
|
77 | + const HOOK_RESOURCE_ID = "RessourceId"; // Known spelling mistake in MangoPay Api |
|
78 | 78 | const HOOK_DATE = "Date"; |
79 | 79 | |
80 | 80 | // Event types |
@@ -55,7 +55,7 @@ |
||
55 | 55 | $responses = []; |
56 | 56 | |
57 | 57 | $hookItems = $this->getHookService()->list(); |
58 | - foreach($hookItems as $hook) { |
|
58 | + foreach ($hookItems as $hook) { |
|
59 | 59 | $hookId = $hook->Id; |
60 | 60 | $this->output->infoid("Updating Hook ID " . $hookId . " with " . $url); |
61 | 61 | try { |
@@ -30,7 +30,7 @@ |
||
30 | 30 | public function __construct($clientId, $clientPassword, $baseUrl, MangoPayApi $mangoPayApi, Logger $logger) |
31 | 31 | { |
32 | 32 | $this->logger = $logger; |
33 | - $path = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR. '..' . DIRECTORY_SEPARATOR. '..' . DIRECTORY_SEPARATOR. '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR. 'var/logs/mangopay.log'; |
|
33 | + $path = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'var/logs/mangopay.log'; |
|
34 | 34 | $this->logger->pushHandler(new StreamHandler($path, Logger::DEBUG)); |
35 | 35 | |
36 | 36 | $this->mangoPayApi = $mangoPayApi; |
@@ -75,10 +75,10 @@ |
||
75 | 75 | return $this->payInTranslator->translateMangoPayBankwireDirectPayInToDto($createdPayIn); |
76 | 76 | } |
77 | 77 | $this->logger->addCritical( |
78 | - "Pay-In has been created with status: ".$createdPayIn->Status . ' (result code: ' . $createdPayIn->ResultCode . ')' |
|
78 | + "Pay-In has been created with status: " . $createdPayIn->Status . ' (result code: ' . $createdPayIn->ResultCode . ')' |
|
79 | 79 | ); |
80 | 80 | throw new PartFireException( |
81 | - "Pay-In has been created with status: ".$createdPayIn->Status . ' (result code: ' . $createdPayIn->ResultCode . ')' |
|
81 | + "Pay-In has been created with status: " . $createdPayIn->Status . ' (result code: ' . $createdPayIn->ResultCode . ')' |
|
82 | 82 | ); |
83 | 83 | } |
84 | 84 | $this->logger->addCritical("Failed to create PayIn"); |