Passed
Branch master (e96466)
by Chubarov
03:06
created
src/Handlers/XmlConverter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,12 +9,12 @@  discard block
 block discarded – undo
9 9
     private function xmlToArrayRecursive($xml) {
10 10
         $xml = (array) $xml;
11 11
 
12
-        if(empty($xml)) {
12
+        if (empty($xml)) {
13 13
             return null;
14 14
         }
15 15
 
16 16
         foreach ($xml as $key => $val) {
17
-            if (is_array($val)){
17
+            if (is_array($val)) {
18 18
                 $xml[$key] = $this->xmlToArray($val);
19 19
             } else {
20 20
                 if ($val instanceof SimpleXMLElement) {
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     private function xmlToArray($xml) {
33 33
         $xml = (array) $xml;
34 34
 
35
-        if(empty($xml)) {
35
+        if (empty($xml)) {
36 36
             return null;
37 37
         }
38 38
 
Please login to merge, or discard this patch.
src/ServiceProviders/ConfigurationServiceProvider.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 register()
11 11
     {
12
-        if ( app()->resolved('config') === false )
12
+        if (app()->resolved('config') === false)
13 13
         {
14 14
             app()->instance('config', new Repository());
15 15
         }
Please login to merge, or discard this patch.
src/ServiceProviders/ActionsServiceProviders.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
     public function register()
15 15
     {
16
-       app()->bind(Read::class,   Read::class);
16
+       app()->bind(Read::class, Read::class);
17 17
        app()->bind(Create::class, Create::class);
18 18
        app()->bind(Update::class, Update::class);
19 19
        app()->bind(Delete::class, Delete::class);
Please login to merge, or discard this patch.
src/SourcesConfigurations/File.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      */
18 18
     public function get()
19 19
     {
20
-        $configuration =  require $this->pathToFile;
20
+        $configuration = require $this->pathToFile;
21 21
         return $configuration;
22 22
     }
23 23
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         if (file_exists($path))
31 31
         {
32 32
             $this->pathToFile = $path;
33
-        } else{
33
+        } else {
34 34
             Assertion::file($path, 'Local file name is not exist.');
35 35
         }
36 36
         return true;
Please login to merge, or discard this patch.
example.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 //dd($test);
56 56
 
57 57
 // 8.  Example delete
58
-$test = $test->action('delete:xml', function ($creator){
58
+$test = $test->action('delete:xml', function($creator) {
59 59
     $creator->guid('');
60 60
 })->get();
61 61
 dd($test);
62 62
\ No newline at end of file
Please login to merge, or discard this patch.
src/Assistants/ConstructorUrl.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
     /**
14 14
      * Concatenation Url In Curl
15
-     * @param $newParameters string
15
+     * @param string $newParameters string
16 16
      * @return $this
17 17
      */
18 18
     protected function concatenationUrlCurl($newParameters)
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      */
18 18
     protected function concatenationUrlCurl($newParameters)
19 19
     {
20
-        if ($this->url  == '?') {
20
+        if ($this->url == '?') {
21 21
             $this->url .= $newParameters;
22 22
         } elseif ($this->url == '') {
23 23
             $this->url .= $newParameters;
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
             $this->url .= $newParameters;
26 26
         }
27 27
         else {
28
-            $this->url .= '&'.$newParameters;
28
+            $this->url .= '&' . $newParameters;
29 29
         }
30 30
         return $this;
31 31
     }
@@ -40,10 +40,10 @@  discard block
 block discarded – undo
40 40
         $this->checkGuId($guid);
41 41
         $this->url      = '';
42 42
         $ParameterQuery = '(guid';
43
-        $ParameterQuery.= "'";
44
-        $ParameterQuery.= $guid;
45
-        $ParameterQuery.= "'";
46
-        $ParameterQuery.=')';
43
+        $ParameterQuery .= "'";
44
+        $ParameterQuery .= $guid;
45
+        $ParameterQuery .= "'";
46
+        $ParameterQuery .= ')';
47 47
 
48 48
         return $this->concatenationUrlCurl($ParameterQuery);
49 49
     }
Please login to merge, or discard this patch.
src/Actions/Delete.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     }
44 44
 
45 45
     /**
46
-     * @return \agoalofalife\bpm\Contracts\Handler
46
+     * @return \Illuminate\Container\Container
47 47
      */
48 48
     public function processData()
49 49
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 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.
helpers/helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 use Illuminate\Container\Container;
4 4
 
5
-if (! function_exists('config')) {
5
+if (!function_exists('config')) {
6 6
     /**
7 7
      * Get / set the specified configuration value.
8 8
      *
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     }
27 27
 }
28 28
 
29
-if (! function_exists('app')) {
29
+if (!function_exists('app')) {
30 30
     /**
31 31
      * Get the available container instance.
32 32
      *
Please login to merge, or discard this patch.
src/Assistants/QueryBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
     public function getCookie()
13 13
     {
14
-        $curl = ['curl' => [ CURLOPT_COOKIEFILE => app(Authentication::class)->getPathCookieFile()]];
14
+        $curl = ['curl' => [CURLOPT_COOKIEFILE => app(Authentication::class)->getPathCookieFile()]];
15 15
         $this->merge($curl);
16 16
         return $this;
17 17
     }
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     public function debug()
41 41
     {
42
-        $debug  = ['on_stats' => function (TransferStats $stats) {
42
+        $debug = ['on_stats' => function(TransferStats $stats) {
43 43
             app(Logger::class)->debug('api',
44 44
                 [
45 45
                     'time'    =>  $stats->getTransferTime(),
Please login to merge, or discard this patch.