Completed
Push — develop ( 8dee05 )
by Dmytro
20:08
created
core/src/AbstractLaravel.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,18 +1,18 @@
 block discarded – undo
1 1
 <?php namespace EvolutionCMS;
2 2
 
3 3
 use EvolutionCMS\Interfaces\DatabaseInterface;
4
-use Illuminate\Support\Arr;
5
-use Illuminate\Support\Str;
6
-use Illuminate\Support\Collection;
4
+use Illuminate\Config\Repository;
7 5
 use Illuminate\Container\Container;
8 6
 use Illuminate\Contracts\Foundation\Application as ApplicationContract;
9 7
 use Illuminate\Events\EventServiceProvider;
10 8
 use Illuminate\Filesystem\Filesystem;
9
+use Illuminate\Log\LogServiceProvider;
10
+use Illuminate\Support\Arr;
11
+use Illuminate\Support\Collection;
11 12
 use Illuminate\Support\Facades\Facade;
12 13
 use Illuminate\Support\ServiceProvider;
13
-use Illuminate\Config\Repository;
14
+use Illuminate\Support\Str;
14 15
 use Symfony\Component\Finder\Finder;
15
-use Illuminate\Log\LogServiceProvider;
16 16
 
17 17
 abstract class AbstractLaravel extends Container implements ApplicationContract
18 18
 {
Please login to merge, or discard this patch.
core/src/Console.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php namespace EvolutionCMS;
2 2
 
3 3
 use Illuminate\Console\Application as Artisan;
4
+use Illuminate\Console\Events;
4 5
 use Illuminate\Contracts\Container\Container;
5 6
 use Illuminate\Contracts\Events\Dispatcher;
6
-use Illuminate\Console\Events;
7 7
 use Symfony\Component\Console\Application as SymfonyApplication;
8 8
 
9 9
 class Console extends Artisan
Please login to merge, or discard this patch.
core/src/Console/VendorPublishCommand.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php namespace EvolutionCMS\Console;
2 2
 
3
-use Illuminate\Support\Arr;
4 3
 use Illuminate\Console\Command;
5
-use League\Flysystem\MountManager;
6 4
 use Illuminate\Filesystem\Filesystem;
5
+use Illuminate\Support\Arr;
7 6
 use Illuminate\Support\ServiceProvider;
8
-use League\Flysystem\Filesystem as Flysystem;
9 7
 use League\Flysystem\Adapter\Local as LocalAdapter;
8
+use League\Flysystem\Filesystem as Flysystem;
9
+use League\Flysystem\MountManager;
10 10
 
11 11
 /**
12 12
  * @see: https://github.com/laravel-zero/foundation/blob/5.6/src/Illuminate/Foundation/Console/VendorPublishCommand.php
Please login to merge, or discard this patch.
core/src/Console/ViewClearCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php namespace EvolutionCMS\Console;
2 2
 
3
-use RuntimeException;
4 3
 use Illuminate\Console\Command;
5 4
 use Illuminate\Filesystem\Filesystem;
5
+use RuntimeException;
6 6
 
7 7
 /**
8 8
  * @see: https://github.com/laravel-zero/foundation/blob/5.6/src/Illuminate/Foundation/Console/ViewClearCommand.php
Please login to merge, or discard this patch.
core/src/Controllers/AbstractController.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,9 +1,8 @@
 block discarded – undo
1 1
 <?php namespace EvolutionCMS\Controllers;
2 2
 
3
-use EvolutionCMS\Interfaces\ManagerTheme\ControllerInterface;
4 3
 use EvolutionCMS\Interfaces\ManagerThemeInterface;
4
+use EvolutionCMS\Interfaces\ManagerTheme\ControllerInterface;
5 5
 use View;
6
-use Illuminate\Contracts\View\View as ViewContract;
7 6
 
8 7
 abstract class AbstractController implements ControllerInterface
9 8
 {
Please login to merge, or discard this patch.
core/src/Controllers/Chunk.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php namespace EvolutionCMS\Controllers;
2 2
 
3
-use EvolutionCMS\Models;
4 3
 use EvolutionCMS\Interfaces\ManagerTheme;
4
+use EvolutionCMS\Models;
5 5
 use Illuminate\Support\Collection;
6 6
 
7 7
 class Chunk extends AbstractController implements ManagerTheme\PageControllerInterface
Please login to merge, or discard this patch.
core/src/Controllers/EventLog.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php namespace EvolutionCMS\Controllers;
2 2
 
3
-use EvolutionCMS\Models;
4 3
 use EvolutionCMS\Interfaces\ManagerTheme;
4
+use EvolutionCMS\Models;
5 5
 
6 6
 class EventLog extends AbstractController implements ManagerTheme\PageControllerInterface
7 7
 {
Please login to merge, or discard this patch.
core/src/Controllers/ExportSite.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,7 @@
 block discarded – undo
1 1
 <?php namespace EvolutionCMS\Controllers;
2 2
 
3
-use EvolutionCMS\Interfaces\ManagerTheme;
3
+use EvolutionCMS\Interfaces\ManagerTheme;
4 4
 use EvolutionCMS\Interfaces\ManagerThemeInterface;
5
-use EvolutionCMS\Models;
6 5
 
7 6
 class ExportSite extends AbstractController implements ManagerTheme\PageControllerInterface
8 7
 {
Please login to merge, or discard this patch.
core/src/Controllers/Frame.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php namespace EvolutionCMS\Controllers;
2 2
 
3
-use EvolutionCMS\Interfaces\ManagerTheme;
3
+use EvolutionCMS\Interfaces\ManagerTheme;
4 4
 use EvolutionCMS\Interfaces\ManagerThemeInterface;
5 5
 
6 6
 class Frame extends AbstractController implements ManagerTheme\PageControllerInterface
Please login to merge, or discard this patch.