Test Failed
Pull Request — develop (#22)
by Oguzhan
03:49
created
src/Model/Song.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
     }
83 83
 
84 84
     /**
85
-     * @return ArrayCollection
85
+     * @return SongArtist[]
86 86
      */
87 87
     public function getArtist()
88 88
     {
Please login to merge, or discard this patch.
src/Service/MusicBrainz/Endpoint/Artist.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     public function transformCollection($raw)
58 58
     {
59 59
         $collection = new ArrayCollection();
60
-        if(is_array($raw)) {
60
+        if (is_array($raw)) {
61 61
             foreach ($raw as $artist) {
62 62
                 $collection->add($this->transformSingle($artist));
63 63
             }
Please login to merge, or discard this patch.