Passed
Branch feature/spotify (f0f03e)
by Oguzhan
04:06
created
src/DependencyInjection/MusicInfoExtension.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,7 @@
 block discarded – undo
2 2
 namespace Pbxg33k\MusicInfo\DependencyInjection;
3 3
 
4 4
 use Symfony\Component\HttpKernel\DependencyInjection\Extension;
5
-use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
6 5
 use Symfony\Component\DependencyInjection\ContainerBuilder;
7
-use Symfony\Component\Config\FileLocator;
8 6
 
9 7
 class MusicInfoExtension extends Extension
10 8
 {
Please login to merge, or discard this patch.
src/MusicInfo.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Pbxg33k\MusicInfo\Model\IMusicService;
9 9
 use Pbxg33k\MusicInfo\Service\BaseService;
10 10
 use Pbxg33k\Traits\PropertyTrait;
11
-use Symfony\Component\Config\FileLocator;
12 11
 
13 12
 class MusicInfo
14 13
 {
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.