@@ -14,14 +14,10 @@ |
||
| 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]> |
@@ -15,10 +15,6 @@ |
||
| 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 | { |
@@ -5,8 +5,8 @@ |
||
| 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 | { |
@@ -12,8 +12,8 @@ |
||
| 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. |
@@ -14,8 +14,6 @@ |
||
| 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 | * |
@@ -12,8 +12,8 @@ |
||
| 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]> |
@@ -12,8 +12,8 @@ |
||
| 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 | { |
@@ -2,8 +2,8 @@ |
||
| 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 | { |
@@ -2,23 +2,16 @@ |
||
| 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 | { |