Completed
Push — master ( 5f640f...f30f41 )
by Pierre-Henry
34:09
created
_protected/app/Bootstrap.php 1 patch
Unused Use Statements   +7 added lines, -8 removed lines patch added patch discarded remove patch
@@ -13,14 +13,13 @@
 block discarded – undo
13 13
 namespace PH7;
14 14
 defined('PH7') or exit('Restricted access');
15 15
 
16
-use
17
-PH7\Framework\Server\Server,
18
-PH7\Framework\Navigation\Browser,
19
-PH7\Framework\Registry\Registry,
20
-PH7\Framework\Mvc\Router\FrontController,
21
-PH7\Framework\Config\Config,
22
-PH7\Framework\File\Import,
23
-PH7\Framework\Error\CException as Except;
16
+use PH7\Framework\Server\Server;
17
+use PH7\Framework\Navigation\Browser;
18
+use PH7\Framework\Registry\Registry;
19
+use PH7\Framework\Mvc\Router\FrontController;
20
+use PH7\Framework\Config\Config;
21
+use PH7\Framework\File\Import;
22
+use PH7\Framework\Error\CException as Except;
24 23
 
25 24
 /***** Begin Loading Files *****/
26 25
 
Please login to merge, or discard this patch.
_protected/app/system/core/assets/ajax/LikeCoreAjax.php 1 patch
Unused Use Statements   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,8 @@
 block discarded – undo
12 12
 namespace PH7;
13 13
 defined('PH7') or exit('Restricted access');
14 14
 
15
-use PH7\Framework\Mvc\Request\Http, PH7\Framework\Ip\Ip;
15
+use PH7\Framework\Mvc\Request\Http;
16
+use PH7\Framework\Ip\Ip;
16 17
 
17 18
 class LikeCoreAjax
18 19
 {
Please login to merge, or discard this patch.
_protected/app/system/core/assets/ajax/popup/confirmCoreAjax.php 1 patch
Unused Use Statements   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -8,12 +8,11 @@
 block discarded – undo
8 8
 namespace PH7;
9 9
 defined('PH7') or exit('Restricted access');
10 10
 
11
-use
12
-PH7\Framework\Mvc\Request\Http,
13
-PH7\Framework\Layout\Html\Design,
14
-PH7\Framework\Url\Url,
15
-PH7\Framework\Mvc\Router\Uri,
16
-PH7\Framework\Url\Header;
11
+use PH7\Framework\Mvc\Request\Http;
12
+use PH7\Framework\Layout\Html\Design;
13
+use PH7\Framework\Url\Url;
14
+use PH7\Framework\Mvc\Router\Uri;
15
+use PH7\Framework\Url\Header;
17 16
 
18 17
 if (AdminCore::auth() || UserCore::auth() || AffiliateCore::auth())
19 18
 {
Please login to merge, or discard this patch.
_protected/app/system/core/assets/ajax/RatingCoreAjax.php 1 patch
Unused Use Statements   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,8 @@
 block discarded – undo
12 12
 namespace PH7;
13 13
 defined('PH7') or exit('Restricted access');
14 14
 
15
-use
16
-PH7\Framework\Mvc\Request\Http,
17
-PH7\Framework\Cookie\Cookie,
18
-PH7\Framework\Mvc\Router\Uri;
15
+use PH7\Framework\Mvc\Request\Http;
16
+use PH7\Framework\Cookie\Cookie;
19 17
 
20 18
 class RatingCoreAjax
21 19
 {
Please login to merge, or discard this patch.
_protected/app/system/core/assets/ajax/SmileCoreAjax.php 1 patch
Unused Use Statements   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,8 @@
 block discarded – undo
11 11
 namespace PH7;
12 12
 defined('PH7') or exit('Restricted access');
13 13
 
14
-use PH7\Framework\Cache\Cache, PH7\Framework\Http\Http;
14
+use PH7\Framework\Cache\Cache;
15
+use PH7\Framework\Http\Http;
15 16
 
16 17
 class SmileCoreAjax extends \PH7\Framework\Service\Emoticon
17 18
 {
Please login to merge, or discard this patch.
_protected/app/system/core/assets/ajax/ValidateCoreAjax.php 1 patch
Unused Use Statements   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,11 +12,10 @@
 block discarded – undo
12 12
 namespace PH7;
13 13
 defined('PH7') or exit('Restricted access');
14 14
 
15
-use
16
-PH7\Framework\Str\Str,
17
-PH7\Framework\Mvc\Model\DbConfig,
18
-PH7\Framework\Security\Validate\Validate,
19
-PH7\Framework\Mvc\Request\Http;
15
+use PH7\Framework\Str\Str;
16
+use PH7\Framework\Mvc\Model\DbConfig;
17
+use PH7\Framework\Security\Validate\Validate;
18
+use PH7\Framework\Mvc\Request\Http;
20 19
 
21 20
 class ValidateCoreAjax
22 21
 {
Please login to merge, or discard this patch.
_protected/app/system/core/assets/cron/96h/DatabaseCoreCron.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,9 @@
 block discarded – undo
12 12
 namespace PH7;
13 13
 defined('PH7') or exit('Restricted access');
14 14
 
15
-use
16
-PH7\Framework\Mvc\Model\Engine\Db,
17
-PH7\Framework\Mvc\Model\DbConfig,
18
-PH7\Framework\Mvc\Model\Engine\Util\Backup;
15
+use PH7\Framework\Mvc\Model\Engine\Db;
16
+use PH7\Framework\Mvc\Model\DbConfig;
17
+use PH7\Framework\Mvc\Model\Engine\Util\Backup;
19 18
 
20 19
 class DatabaseCoreCron extends Cron
21 20
 {
Please login to merge, or discard this patch.
_protected/app/system/core/assets/file/UpgradeCoreFile.php 1 patch
Unused Use Statements   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,13 +12,12 @@
 block discarded – undo
12 12
 namespace PH7;
13 13
 defined('PH7') or exit('Restricted access');
14 14
 
15
-use
16
-PH7\Framework\Core\Kernel,
17
-PH7\Framework\Config\Config,
18
-PH7\Framework\Mvc\Model\DbConfig,
19
-PH7\Framework\Mvc\Request\Http,
20
-PH7\Framework\Security\Version,
21
-PH7\Framework\File as F;
15
+use PH7\Framework\Core\Kernel;
16
+use PH7\Framework\Config\Config;
17
+use PH7\Framework\Mvc\Model\DbConfig;
18
+use PH7\Framework\Mvc\Request\Http;
19
+use PH7\Framework\Security\Version;
20
+use PH7\Framework\File as F;
22 21
 
23 22
 /**
24 23
  * This is usually necessary to import data from remote server.
Please login to merge, or discard this patch.
_protected/app/system/core/assets/js/mailcheck.jsCoreJs.php 1 patch
Unused Use Statements   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,11 +12,10 @@
 block discarded – undo
12 12
 namespace PH7;
13 13
 defined('PH7') or exit('Restricted access');
14 14
 
15
-use
16
-PH7\Framework\Config\Config,
17
-PH7\Framework\Cache\Cache,
18
-PH7\Framework\Compress\Compress,
19
-PH7\Framework\Service\Suggestion;
15
+use PH7\Framework\Config\Config;
16
+use PH7\Framework\Cache\Cache;
17
+use PH7\Framework\Compress\Compress;
18
+use PH7\Framework\Service\Suggestion;
20 19
 
21 20
 $oCache = (new Cache)->start('str/js', 'mailcheck', 120*48*30);
22 21
 
Please login to merge, or discard this patch.