Completed
Branch master (6c262f)
by Pierre-Henry
111:59 queued 51:18
created
_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/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/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.
_protected/app/system/core/classes/Security.php 1 patch
Unused Use Statements   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,11 +7,10 @@
 block discarded – undo
7 7
  */
8 8
 namespace PH7;
9 9
 
10
-use
11
-PH7\Framework\Mail\Mail,
12
-PH7\Framework\Layout\Tpl\Engine\PH7Tpl\PH7Tpl,
13
-PH7\Framework\Mvc\Router\Uri,
14
-PH7\Framework\Mvc\Model\Engine\Util\Various;
10
+use PH7\Framework\Mail\Mail;
11
+use PH7\Framework\Layout\Tpl\Engine\PH7Tpl\PH7Tpl;
12
+use PH7\Framework\Mvc\Router\Uri;
13
+use PH7\Framework\Mvc\Model\Engine\Util\Various;
15 14
 
16 15
 class Security
17 16
 {
Please login to merge, or discard this patch.
app/system/core/forms/processing/ResendActivationCoreFormProcess.php 1 patch
Unused Use Statements   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,8 @@
 block discarded – undo
8 8
 namespace PH7;
9 9
 defined('PH7') or exit('Restricted access');
10 10
 
11
-use PH7\Framework\Mvc\Router\Uri, PH7\Framework\Mail\Mail;
11
+use PH7\Framework\Mvc\Router\Uri;
12
+use PH7\Framework\Mail\Mail;
12 13
 
13 14
 /** For "user" and "affiliate" module **/
14 15
 class ResendActivationCoreFormProcess extends Form
Please login to merge, or discard this patch.
_protected/app/system/core/models/AffiliateCoreModel.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,9 +7,8 @@
 block discarded – undo
7 7
  */
8 8
 namespace PH7;
9 9
 
10
-use
11
-PH7\Framework\Mvc\Model\Engine\Db,
12
-PH7\Framework\Mvc\Model\Engine\Util\Various;
10
+use PH7\Framework\Mvc\Model\Engine\Db;
11
+use PH7\Framework\Mvc\Model\Engine\Util\Various;
13 12
 
14 13
 // Abstract Class
15 14
 class AffiliateCoreModel extends AdminCoreModel
Please login to merge, or discard this patch.