Passed
Branch feature/spotify (eedfe3)
by Oguzhan
02:52
created
src/Service/VocaDB/Service.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function init($config = null)
17 17
     {
18
-        if(!$config) {
18
+        if (!$config) {
19 19
             $config = $this->getConfig()['guzzle'];
20 20
         }
21 21
 
Please login to merge, or discard this patch.
src/Service/Spotify/Service.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function init($config = null)
17 17
     {
18
-        if(!$config) {
18
+        if (!$config) {
19 19
             $config = $this->getConfig()['guzzle'];
20 20
         }
21 21
 
Please login to merge, or discard this patch.
src/Service/VocaDB/Endpoint/Artist.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,8 +77,7 @@
 block discarded – undo
77 77
     public function transformCollection($raw)
78 78
     {
79 79
         $collection = new ArrayCollection();
80
-        foreach ($raw->collection as $artist)
81
-        {
80
+        foreach ($raw->collection as $artist) {
82 81
             $collection->add($this->transformSingle($artist));
83 82
         }
84 83
 
Please login to merge, or discard this patch.