Passed
Push — master ( 6351b0...2a835b )
by Stavros
12:23
created
src/Services/CurlWrapper.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     private function execute() {
69 69
       
70 70
         //For debuging 
71
-       if ($this->getCurlDebugIsEnable()){
71
+        if ($this->getCurlDebugIsEnable()){
72 72
         $parentDir = dirname(dirname(dirname(__FILE__)));
73 73
         $fp = fopen($parentDir.'/debug_viva_curl.txt', 'w');
74 74
         curl_setopt($this->ch, CURLOPT_VERBOSE, 1);
Please login to merge, or discard this patch.
src/Enums/WebhookEventType.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
         /**
57 57
          * Return value as string 
58 58
          * Enums\PaymentMethods::fromValue(15);
59
-        */
59
+         */
60 60
         
61 61
         public static function fromValue(int $value): string
62 62
         {
Please login to merge, or discard this patch.
src/Enums/RequestLang.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     /**
41 41
      * Return value as string 
42 42
      * Enums\RequestLang::fromValue('el-GR');
43
-    */
43
+     */
44 44
     
45 45
     public static function fromValue(string $value): string
46 46
     {
Please login to merge, or discard this patch.
src/Enums/TransactionType.php 1 patch
Indentation   +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
      * Return value as string 
63 63
      * Enums\PaymentMethods::fromName('Dias');
64
-    */
64
+     */
65 65
 
66 66
 
67 67
 public static function fromName(string $name): int
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * Return value as string 
81 81
      * Enums\PaymentMethods::fromValue(15);
82
-    */
82
+     */
83 83
     
84 84
     public static function fromValue(int $value): string
85 85
     {
Please login to merge, or discard this patch.
src/Enums/PaymentMethods.php 1 patch
Indentation   +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
      * Return value as string 
63 63
      * Enums\PaymentMethods::fromName('Dias');
64
-    */
64
+     */
65 65
 
66 66
 
67 67
 public static function fromName(string $name): int
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * Return value as string 
81 81
      * Enums\PaymentMethods::fromValue(15);
82
-    */
82
+     */
83 83
     
84 84
     public static function fromValue(int $value): string
85 85
     {
Please login to merge, or discard this patch.
src/Traits/getConfigSettings.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 
6 6
 trait getConfigSettings
7 7
 {
8
-       public function getConfigSettings() {
8
+        public function getConfigSettings() {
9 9
         if (!property_exists($this, 'accessToken')) {
10 10
                 throw new \Exception('Property $accessToken does not exist');
11 11
             }
Please login to merge, or discard this patch.
src/Transaction.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     }
18 18
 
19 19
     public function process(){
20
-           echo 'Price =  '.$this->amount; 
20
+            echo 'Price =  '.$this->amount; 
21 21
 
22 22
     }
23 23
 
Please login to merge, or discard this patch.