Passed
Branch master (780ff9)
by Toby
03:03
created
src/Request/BaseRequest.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -210,13 +210,13 @@
 block discarded – undo
210 210
      */
211 211
     private $returnRequestClass = false;
212 212
 
213
-   /**
214
-    * Response from UnionCloud
215
-    *
216
-    * This is populated by the $this->call() function
217
-    *
218
-    * @var BaseResponse
219
-    */
213
+    /**
214
+     * Response from UnionCloud
215
+     *
216
+     * This is populated by the $this->call() function
217
+     *
218
+     * @var BaseResponse
219
+     */
220 220
     private $response;
221 221
 
222 222
 
Please login to merge, or discard this patch.
src/Configuration.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
      *
21 21
      * e.g 'bristol.unioncloud.org'
22 22
      *
23
-    * @var string $baseURL
24
-    */
23
+     * @var string $baseURL
24
+     */
25 25
     private $baseURL;
26 26
 
27 27
     /**
@@ -35,40 +35,40 @@  discard block
 block discarded – undo
35 35
 
36 36
 
37 37
     /**
38
-    * Get the property baseURL
39
-    *
40
-    * @return string
41
-    */
38
+     * Get the property baseURL
39
+     *
40
+     * @return string
41
+     */
42 42
     public function getBaseURL()
43 43
     {
44 44
         return $this->baseURL;
45 45
     }
46 46
 
47 47
     /**
48
-    * Set the property baseURL
49
-    *
50
-    * @param string $baseURL
51
-    */
48
+     * Set the property baseURL
49
+     *
50
+     * @param string $baseURL
51
+     */
52 52
     public function setBaseURL($baseURL)
53 53
     {
54 54
         $this->baseURL = 'https://'.$baseURL;
55 55
     }
56 56
 
57 57
     /**
58
-    * Get the property debug
59
-    *
60
-    * @return string
61
-    */
58
+     * Get the property debug
59
+     *
60
+     * @return string
61
+     */
62 62
     public function getDebug()
63 63
     {
64 64
         return $this->debug;
65 65
     }
66 66
 
67 67
     /**
68
-    * Set the property debug
69
-    *
70
-    * @param string $debug
71
-    */
68
+     * Set the property debug
69
+     *
70
+     * @param string $debug
71
+     */
72 72
     public function setDebug($debug)
73 73
     {
74 74
         $this->debug = $debug;
Please login to merge, or discard this patch.