Completed
Push — develop ( 8dee05 )
by Dmytro
20:08
created
core/src/Controllers/SiteSchedule.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 SiteSchedule extends AbstractController implements ManagerTheme\PageControllerInterface
7 7
 {
Please login to merge, or discard this patch.
core/src/Controllers/Snippet.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 Snippet extends AbstractController implements ManagerTheme\PageControllerInterface
Please login to merge, or discard this patch.
core/src/Controllers/SystemInfo.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\Interfaces\ManagerThemeInterface;
4 3
 use EvolutionCMS\Interfaces\ManagerTheme;
4
+use EvolutionCMS\Interfaces\ManagerThemeInterface;
5 5
 use Illuminate\Support\Collection;
6 6
 
7 7
 class SystemInfo extends AbstractController implements ManagerTheme\PageControllerInterface
Please login to merge, or discard this patch.
core/src/Controllers/SystemSettings.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 SystemSettings extends AbstractController implements ManagerTheme\PageControllerInterface
7 7
 {
Please login to merge, or discard this patch.
core/src/Controllers/Template.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php namespace EvolutionCMS\Controllers;
2 2
 
3
-use EvolutionCMS\Models;
4 3
 use EvolutionCMS\Interfaces\ManagerTheme;
5
-use Illuminate\Support\Collection;
4
+use EvolutionCMS\Models;
6 5
 use Illuminate\Database\Eloquent;
6
+use Illuminate\Support\Collection;
7 7
 
8 8
 class Template extends AbstractController implements ManagerTheme\PageControllerInterface
9 9
 {
Please login to merge, or discard this patch.
core/src/Controllers/Tmplvar.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
 use Symfony\Component\Finder;
7 7
 
Please login to merge, or discard this patch.
core/src/Database.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
 use AgelxNash\Modx\Evo\Database\Database as BaseDatabase;
4 4
 use AgelxNash\Modx\Evo\Database\Drivers\IlluminateDriver;
5
-use Exception;
6 5
 use AgelxNash\Modx\Evo\Database\Exceptions;
6
+use Exception;
7 7
 
8 8
 class Database extends BaseDatabase implements Interfaces\DatabaseInterface
9 9
 {
Please login to merge, or discard this patch.
core/src/ExceptionHandler.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;
2 2
 
3
-use Illuminate\Contracts\Container\Container;
4 3
 use AgelxNash\Modx\Evo\Database\Exceptions\ConnectException;
4
+use EvolutionCMS\Interfaces\TracyPanel;
5
+use EvolutionCMS\Tracy\Debugger;
5 6
 use Exception;
7
+use Illuminate\Contracts\Container\Container;
6 8
 use Symfony\Component\Debug\Exception\FatalErrorException;
7 9
 use Symfony\Component\Debug\Exception\FatalThrowableError;
8
-use EvolutionCMS\Tracy\Debugger;
9
-use EvolutionCMS\Interfaces\TracyPanel;
10 10
 
11 11
 /**
12 12
  * @see: https://github.com/laravel/framework/blob/5.6/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php
Please login to merge, or discard this patch.
core/src/Mail.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;
2 2
 
3
-use PHPMailer\PHPMailer\PHPMailer;
4 3
 use PHPMailer\PHPMailer\Exception as PHPMailerException;
4
+use PHPMailer\PHPMailer\PHPMailer;
5 5
 
6 6
 class Mail extends PHPMailer
7 7
 {
Please login to merge, or discard this patch.