Passed
Branch 2.0.0 (2e9c5e)
by Chubarov
02:56
created
src/Actions/Create.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,11 +55,11 @@
 block discarded – undo
55 55
     {
56 56
         $parameters = str_replace(' ', '%20', $this->url);
57 57
 
58
-        $url        = $this->kernel->getCollection() . $parameters;
59
-        $urlHome    = config($this->kernel->getPrefixConfig() . '.UrlHome');
58
+        $url        = $this->kernel->getCollection().$parameters;
59
+        $urlHome    = config($this->kernel->getPrefixConfig().'.UrlHome');
60 60
 
61 61
         $this->headers()->getCookie()->body()->httpErrorsFalse()->get();
62
-        $response   =  $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome . $url,
62
+        $response   = $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome.$url,
63 63
                        $this->headers()->getCookie()->body()->httpErrorsFalse()->get()
64 64
         );
65 65
         $body       = $response->getBody();
Please login to merge, or discard this patch.
src/Handlers/XmlHandler.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -84,12 +84,12 @@  discard block
 block discarded – undo
84 84
         $this->response      = simplexml_load_string($response);
85 85
         $copyXml             = $this->response;
86 86
 
87
-        if ( $this->response === false || $this->checkIntegrity($this->response) === false )
87
+        if ($this->response === false || $this->checkIntegrity($this->response) === false)
88 88
         {
89 89
             return [];
90 90
         }
91 91
 
92
-            $array_vars_list    = get_object_vars($copyXml);
92
+            $array_vars_list = get_object_vars($copyXml);
93 93
 
94 94
             if (key_exists('content', $array_vars_list)) {
95 95
                 return $this->arrayOne();
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      */
108 108
     public function checkIntegrity($response)
109 109
     {
110
-        if ( empty($response->message) )
110
+        if (empty($response->message))
111 111
         {
112 112
             return true;
113 113
         }
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     private function workspace()
156 156
     {
157 157
         foreach ($this->response->workspace->collection as $item) {
158
-            $this->validText[] = get_object_vars($item->children(  $this->namespaces['NamespaceAtom'] ))['title'];
158
+            $this->validText[] = get_object_vars($item->children($this->namespaces['NamespaceAtom']))['title'];
159 159
         }
160 160
         return $this;
161 161
     }
@@ -167,8 +167,8 @@  discard block
 block discarded – undo
167 167
      */
168 168
     private function arrayMany()
169 169
     {
170
-            foreach ($this->response->children( $this->namespaces['NamespaceAtom'] )->entry as $item ) {
171
-                $this->validText[] =   $item->content->children( $this->namespaces['NamespaceMetadata'] )
170
+            foreach ($this->response->children($this->namespaces['NamespaceAtom'])->entry as $item) {
171
+                $this->validText[] = $item->content->children($this->namespaces['NamespaceMetadata'])
172 172
                     ->children($this->namespaces['NamespaceDataServices']);
173 173
             }
174 174
             return $this;
@@ -179,9 +179,9 @@  discard block
 block discarded – undo
179 179
      */
180 180
     private function arrayOne()
181 181
     {
182
-        $this->validText = $this->response->children( $this->namespaces['NamespaceAtom'] )->content
183
-            ->children( $this->namespaces['NamespaceMetadata'] )
184
-            ->children( $this->namespaces['NamespaceDataServices'] );
182
+        $this->validText = $this->response->children($this->namespaces['NamespaceAtom'])->content
183
+            ->children($this->namespaces['NamespaceMetadata'])
184
+            ->children($this->namespaces['NamespaceDataServices']);
185 185
         return $this;
186 186
     }
187 187
 
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
         $xmlns_dcd->appendChild($valued);
219 219
 
220 220
         //----------  properties  ----------//
221
-        $properties   = $dom->createElement('m:properties');
221
+        $properties = $dom->createElement('m:properties');
222 222
         $content->appendChild($properties);
223 223
 
224 224
         foreach ($data as $nameField => $valueField) {
Please login to merge, or discard this patch.
src/Assistants/AuthenticationHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     public function checkResponseUnauthorized(ResponseInterface $response)
11 11
     {
12
-        if ( $response->getStatusCode() == 401 && $response->getReasonPhrase() == 'Unauthorized' )
12
+        if ($response->getStatusCode() == 401 && $response->getReasonPhrase() == 'Unauthorized')
13 13
         {
14 14
             $this->kernel->authentication();
15 15
             $this->query();
Please login to merge, or discard this patch.
src/Actions/Delete.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,11 +53,11 @@
 block discarded – undo
53 53
     {
54 54
         $parameters = str_replace(' ', '%20', $this->url);
55 55
 
56
-        $url        = $this->kernel->getCollection() . $parameters;
57
-        $urlHome    = config($this->kernel->getPrefixConfig() . '.UrlHome');
56
+        $url        = $this->kernel->getCollection().$parameters;
57
+        $urlHome    = config($this->kernel->getPrefixConfig().'.UrlHome');
58 58
 
59 59
 
60
-        $response =  $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome . $url,
60
+        $response = $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome.$url,
61 61
                      $this->headers()->getCookie()->httpErrorsFalse()->get()
62 62
         );
63 63
 
Please login to merge, or discard this patch.
src/Actions/Read.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
      */
78 78
     public function filterConstructor($strRequest)
79 79
     {
80
-        $ParameterQuery =  '$filter=';
81
-        $ParameterQuery.=  $strRequest;
80
+        $ParameterQuery = '$filter=';
81
+        $ParameterQuery .= $strRequest;
82 82
         $this->concatenationUrlCurl($ParameterQuery);
83 83
         return $this;
84 84
     }
@@ -95,13 +95,13 @@  discard block
 block discarded – undo
95 95
     public function orderBy($whatSort, $param = 'asc')
96 96
     {
97 97
         $ParameterQuery = '$orderby=';
98
-        $ParameterQuery.=  ucfirst($whatSort);
98
+        $ParameterQuery .= ucfirst($whatSort);
99 99
 
100
-        if ( empty($param) === false ) {
100
+        if (empty($param) === false) {
101 101
             if ($param != 'desc' && $param != 'asc') {
102 102
                 throw new \Exception('no valid orderby parameters');
103 103
             }
104
-            $ParameterQuery.=  " ".$param;
104
+            $ParameterQuery .= " ".$param;
105 105
         }
106 106
          $this->concatenationUrlCurl($ParameterQuery);
107 107
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      */
133 133
     public function amount($amountMax = null)
134 134
     {
135
-        Assert::that($amountMax,'You must specify a numeric parameter for the amount of the method')->integer();
135
+        Assert::that($amountMax, 'You must specify a numeric parameter for the amount of the method')->integer();
136 136
         $ParameterQuery = '$top='.$amountMax;
137 137
         $this->concatenationUrlCurl($ParameterQuery);
138 138
         return $this;
@@ -145,10 +145,10 @@  discard block
 block discarded – undo
145 145
     private function query()
146 146
     {
147 147
         $parameters   = str_replace(' ', '%20', $this->url);
148
-        $url          = $this->kernel->getCollection() . $parameters;
149
-        $urlHome      = config($this->kernel->getPrefixConfig() . '.UrlHome');
148
+        $url          = $this->kernel->getCollection().$parameters;
149
+        $urlHome      = config($this->kernel->getPrefixConfig().'.UrlHome');
150 150
 
151
-        $response     = $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome . $url,
151
+        $response     = $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome.$url,
152 152
                          $this->debug()->headers()->getCookie()->httpErrorsFalse()->get()
153 153
         );
154 154
         $body         = $response->getBody();
Please login to merge, or discard this patch.
src/Actions/Update.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,10 +80,10 @@
 block discarded – undo
80 80
     private function query()
81 81
     {
82 82
         $parameters = str_replace(' ', '%20', $this->url);
83
-        $url        = $this->kernel->getCollection() . $parameters;
84
-        $urlHome    = config($this->kernel->getPrefixConfig() . '.UrlHome');
83
+        $url        = $this->kernel->getCollection().$parameters;
84
+        $urlHome    = config($this->kernel->getPrefixConfig().'.UrlHome');
85 85
 
86
-        $response   =  $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome . $url,
86
+        $response   = $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome.$url,
87 87
                        $this->headers()->getCookie()->body()->httpErrorsFalse()->get()
88 88
         );
89 89
         $body       = $response->getBody();
Please login to merge, or discard this patch.
src/Handlers/JsonHandler.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public function checkIntegrity($response)
49 49
     {
50
-       return isset( json_decode($response)->{$this->jsonPrefix} );
50
+        return isset( json_decode($response)->{$this->jsonPrefix} );
51 51
     }
52 52
 
53 53
     /**
@@ -88,12 +88,12 @@  discard block
 block discarded – undo
88 88
             {
89 89
                 $result[$key] = $this->objectToArray($value);
90 90
             } else{
91
-               if (gettype($value) != 'object')
92
-               {
93
-                   $result[$key] = $value;
94
-               }
95
-               // TODO not smog to find a similar case
96
-             /*  else{
91
+                if (gettype($value) != 'object')
92
+                {
93
+                    $result[$key] = $value;
94
+                }
95
+                // TODO not smog to find a similar case
96
+                /*  else{
97 97
                    $result[$key] = get_object_vars($value);
98 98
                }*/
99 99
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public function checkIntegrity($response)
49 49
     {
50
-       return isset( json_decode($response)->{$this->jsonPrefix} );
50
+       return isset(json_decode($response)->{$this->jsonPrefix} );
51 51
     }
52 52
 
53 53
     /**
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
     public function create(array $data)
75 75
     {
76
-        if ( empty($data)){
76
+        if (empty($data)) {
77 77
             return $this->buildJson = '{}';
78 78
         }
79 79
         return $this->buildJson = json_encode($data);
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
             if (gettype($value) == 'object')
88 88
             {
89 89
                 $result[$key] = $this->objectToArray($value);
90
-            } else{
90
+            } else {
91 91
                if (gettype($value) != 'object')
92 92
                {
93 93
                    $result[$key] = $value;
Please login to merge, or discard this patch.