Completed
Push — master ( ecaef0...28b78e )
by Peter
10:06
created
src/AppBundle/DependencyManager/Pip.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 /**
4 4
  * This file is part of Packy.
Please login to merge, or discard this patch.
src/AppBundle/RepositoryManager/Github.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 /**
4 4
  * This file is part of Packy.
Please login to merge, or discard this patch.
src/AppBundle/RepositoryManager/Bitbucket.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 /**
4 4
  * This file is part of Packy.
Please login to merge, or discard this patch.
src/AppBundle/RepositoryManager/RepositoryManagers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 /**
4 4
  * This file is part of Packy.
Please login to merge, or discard this patch.
src/AppBundle/RepositoryManager/RepositoryManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 /**
4 4
  * This file is part of Packy.
Please login to merge, or discard this patch.
src/AppBundle/RepositoryManager/Gitlab.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 /**
4 4
  * This file is part of Packy.
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     {
42 42
         try {
43 43
             $fileContent = $this->client->api('repositories')->getFile(
44
-                $project->getVendorName() . '/' . $project->getPackageName(),
44
+                $project->getVendorName().'/'.$project->getPackageName(),
45 45
                 $file,
46 46
                 $project->getBranch()
47 47
             );
Please login to merge, or discard this patch.
src/AppBundle/PackageManager/Pypi.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     {
31 31
         $client = new GuzzleClient();
32 32
         $response = $client->get(
33
-            $this->packageVendor . $package->getName() . '/json',
33
+            $this->packageVendor.$package->getName().'/json',
34 34
             [
35 35
                 'exceptions' => false,
36 36
             ]
Please login to merge, or discard this patch.
src/AppBundle/PackageManager/PackageManagers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 /**
4 4
  * This file is part of Packy.
Please login to merge, or discard this patch.
src/AppBundle/PackageManager/Packagist.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     {
31 31
         $client = new GuzzleClient();
32 32
         $response = $client->get(
33
-            $this->packageVendor . $package->getName() . '.json',
33
+            $this->packageVendor.$package->getName().'.json',
34 34
             [
35 35
                 'exceptions' => false,
36 36
             ]
Please login to merge, or discard this patch.