Completed
Push — master ( cc7b34...377183 )
by Ricardo
04:40
created
src/Bundle/WebsiteBundle/Form/Profile/ProfilePasswordType.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -14,14 +14,10 @@
 block discarded – undo
14 14
 
15 15
 use Symfony\Component\Form\AbstractType;
16 16
 use Symfony\Component\Form\FormBuilderInterface;
17
-use Symfony\Component\Form\FormEvent;
18
-use Symfony\Component\Form\FormEvents;
19 17
 use Symfony\Component\OptionsResolver\OptionsResolverInterface;
20 18
 use Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface;
21 19
 use Symfony\Component\Security\Core\Validator\Constraints\UserPassword;
22 20
 
23
-use Fabrica\Models\Code\User;
24
-
25 21
 /**
26 22
  * @author Julien DIDIER <[email protected]>
27 23
  * @author Alexandre Salomé <[email protected]>
Please login to merge, or discard this patch.
src/Bundle/WebsiteBundle/Twig/FabricaExtension.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -15,10 +15,6 @@
 block discarded – undo
15 15
 use Symfony\Component\DependencyInjection\ContainerInterface;
16 16
 
17 17
 use Fabrica\Models\Code\Project;
18
-use Fabrica\Models\Code\User;
19
-use Fabrica\Tools\Programs\Git\Blob;
20
-use Fabrica\Tools\Programs\Git\Reference;
21
-use Fabrica\Tools\Programs\Git\Tree;
22 18
 
23 19
 class FabricaExtension extends \Twig_Extension
24 20
 {
Please login to merge, or discard this patch.
src/Cacheable/CacheableEloquent.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 namespace Fabrica\Cacheable;
6 6
 
7 7
 use Closure;
8
-use Illuminate\Database\Eloquent\Model;
9 8
 use Illuminate\Database\Eloquent\Builder;
9
+use Illuminate\Database\Eloquent\Model;
10 10
 
11 11
 trait CacheableEloquent
12 12
 {
Please login to merge, or discard this patch.
src/Component/Buzz/Browser/FabricaBrowser.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
 
13 13
 namespace Fabrica\Component\Buzz\Browser;
14 14
 
15
-use Buzz\Message\Request;
16 15
 use Buzz\Browser;
16
+use Buzz\Message\Request;
17 17
 
18 18
 /**
19 19
  * Buzz browser configured for Fabrica APIs.
Please login to merge, or discard this patch.
src/Component/Config/MysqlConfig.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -14,8 +14,6 @@
 block discarded – undo
14 14
 
15 15
 use Doctrine\DBAL\Connection;
16 16
 
17
-use Fabrica\Component\Config\Exception\RuntimeException;
18
-
19 17
 /**
20 18
  * Bulk MySQL version of Config: deletes and reinsert rows.
21 19
  *
Please login to merge, or discard this patch.
src/Component/Config/Tests/ChainConfigTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
 
13 13
 namespace Fabrica\Component\Config\Tests;
14 14
 
15
-use Fabrica\Component\Config\ChainConfig;
16 15
 use Fabrica\Component\Config\ArrayConfig;
16
+use Fabrica\Component\Config\ChainConfig;
17 17
 
18 18
 /**
19 19
  * @author Alexandre Salomé <[email protected]>
Please login to merge, or discard this patch.
src/Component/Pagination/Tests/PagerTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
 
13 13
 namespace Fabrica\Component\Pagination\Tests;
14 14
 
15
-use Fabrica\Component\Pagination\Pager;
16 15
 use Fabrica\Component\Pagination\Adapter\ArrayAdapter;
16
+use Fabrica\Component\Pagination\Pager;
17 17
 
18 18
 class PagerTest extends \PHPUnit\Framework\TestCase
19 19
 {
Please login to merge, or discard this patch.
src/Console/Commands/Sync/PackagesSync.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Fabrica\Console\Commands\Sync;
4 4
 
5
-use Illuminate\Console\Command;
6 5
 use Fabrica\Services\RepositoryFolderService;
6
+use Illuminate\Console\Command;
7 7
 
8 8
 class PackagesSync extends Command
9 9
 {
Please login to merge, or discard this patch.
src/FabricaProvider.php 1 patch
Unused Use Statements   +2 added lines, -9 removed lines patch added patch discarded remove patch
@@ -2,23 +2,16 @@
 block discarded – undo
2 2
 
3 3
 namespace Fabrica;
4 4
 
5
-use Illuminate\Foundation\AliasLoader;
6
-use Illuminate\Support\ServiceProvider;
7 5
 use Fabrica\Services\FabricaService;
8
-use Illuminate\Support\Collection;
9 6
 use Illuminate\Support\Facades\View;
7
+use Illuminate\Support\ServiceProvider;
10 8
 
11
-use Log;
12
-use App;
13 9
 use Config;
10
+use Log;
14 11
 use Route;
15
-use Illuminate\Routing\Router;
16 12
 
17 13
 use Muleta\Traits\Providers\ConsoleTools;
18 14
 
19
-use Fabrica\Facades\Fabrica as FabricaFacade;
20
-use Illuminate\Contracts\Events\Dispatcher;
21
-
22 15
 
23 16
 class FabricaProvider extends ServiceProvider
24 17
 {
Please login to merge, or discard this patch.