Passed
Push — master ( f05bec...91b582 )
by Chubarov
03:02
created
src/ServiceProviders/LoggerServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
     public function register()
14 14
     {
15
-        app()->bind(Logger::class, function(){
15
+        app()->bind(Logger::class, function() {
16 16
             $log = new Logger(KernelBpm::class);
17
-           return  $log->pushHandler(new StreamHandler(KernelBpm::PATH_LOG . date('Y-m-d'). '.txt', Logger::DEBUG));
17
+           return  $log->pushHandler(new StreamHandler(KernelBpm::PATH_LOG.date('Y-m-d').'.txt', Logger::DEBUG));
18 18
         });
19 19
     }
20 20
 }
21 21
\ No newline at end of file
Please login to merge, or discard this patch.
src/KernelBpm.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
  */
37 37
 class KernelBpm
38 38
 {
39
-    const PATH_LOG = __DIR__ . '/resource/logs/';
39
+    const PATH_LOG = __DIR__.'/resource/logs/';
40 40
 
41 41
     protected $action = [
42 42
         'create' =>  Create::class,
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     public function loadConfiguration(SourceConfiguration $configuration)
111 111
     {
112
-        config()->set(  $this->prefixConfiguration = $configuration->getName(), $configuration->get());
112
+        config()->set($this->prefixConfiguration = $configuration->getName(), $configuration->get());
113 113
     }
114 114
 
115 115
     /**
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
     {
160 160
         Assertion::keyIsset($this->action, $typeAction);
161 161
 
162
-        $this->currentAction  =  app()->make( $this->action[$typeAction] );
162
+        $this->currentAction = app()->make($this->action[$typeAction]);
163 163
 
164 164
         return $this->currentAction;
165 165
     }
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 
176 176
          extract($this->splitAction($action));
177 177
 
178
-         $action  = $this->setAction($action);
178
+         $action = $this->setAction($action);
179 179
          $this->setHandler($handler);
180 180
 
181 181
         $action->injectionKernel($this);
@@ -205,8 +205,8 @@  discard block
 block discarded – undo
205 205
     {
206 206
         try {
207 207
             Assertion::regex($collection, '/[A-z]+Collection$/');
208
-        } catch(AssertionFailedException $e) {
209
-           throw new \Exception("Expected word 'Collection' in parameter method setCollection received : " .  $e->getValue());
208
+        } catch (AssertionFailedException $e) {
209
+           throw new \Exception("Expected word 'Collection' in parameter method setCollection received : ".$e->getValue());
210 210
         }
211 211
 
212 212
         return $this->collection = $collection;
@@ -237,8 +237,8 @@  discard block
 block discarded – undo
237 237
 
238 238
         // verification values
239 239
         Assertion::between(count($split), 2, 2);
240
-        Assertion::keyExists( $this->action, $split[0]);
241
-        Assertion::keyExists( $this->handlers, $split[1]);
240
+        Assertion::keyExists($this->action, $split[0]);
241
+        Assertion::keyExists($this->handlers, $split[1]);
242 242
 
243 243
         return ['action' => $split[0], 'handler' => $split[1]];
244 244
     }
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/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 1 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.
src/ServiceProviders/BpmBaseServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     public function boot()
17 17
     {
18 18
         $this->publishes([
19
-            __DIR__ . '/../../config/apiBpm.php' => config_path('apiBpm.php')
19
+            __DIR__.'/../../config/apiBpm.php' => config_path('apiBpm.php')
20 20
         ], 'bpm');
21 21
     }
22 22
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function register()
29 29
     {
30
-       $this->app->bind('bpm', function(){
30
+       $this->app->bind('bpm', function() {
31 31
            $bpm = new KernelBpm();
32 32
            $bpm->setConfigManually('apiBpm', [
33 33
                'UrlLogin' => config('apiBpm.UrlLogin'),
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;
@@ -158,10 +158,10 @@  discard block
 block discarded – undo
158 158
     private function query()
159 159
     {
160 160
         $parameters   = str_replace(' ', '%20', $this->url);
161
-        $url          = $this->kernel->getCollection() . $parameters;
162
-        $urlHome      = config($this->kernel->getPrefixConfig() . '.UrlHome');
161
+        $url          = $this->kernel->getCollection().$parameters;
162
+        $urlHome      = config($this->kernel->getPrefixConfig().'.UrlHome');
163 163
 
164
-        $response     =  $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome . $url,
164
+        $response     = $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome.$url,
165 165
                          $this->debug()->headers()->getCookie()->httpErrorsFalse()->get()
166 166
         );
167 167
         $body         = $response->getBody();
Please login to merge, or discard this patch.