Completed
Push — master ( f30f41...c0e84a )
by Pierre-Henry
35:53
created
_protected/app/system/core/models/RatingCoreModel.php 1 patch
Unused Use Statements   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,8 @@
 block discarded – undo
7 7
  */
8 8
 namespace PH7;
9 9
 
10
-use PH7\Framework\Mvc\Model\Engine\Db, PH7\Framework\Mvc\Model\Engine\Util\Various;
10
+use PH7\Framework\Mvc\Model\Engine\Db;
11
+use PH7\Framework\Mvc\Model\Engine\Util\Various;
11 12
 
12 13
 // Abstract Class
13 14
 class RatingCoreModel extends Framework\Mvc\Model\Engine\Model
Please login to merge, or discard this patch.
_protected/app/system/core/models/UserCoreModel.php 1 patch
Unused Use Statements   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,12 +10,11 @@
 block discarded – undo
10 10
  */
11 11
 namespace PH7;
12 12
 
13
-use
14
-PH7\Framework\Mvc\Model\Engine\Db,
15
-PH7\Framework\Mvc\Model\DbConfig,
16
-PH7\Framework\Mvc\Model\Engine\Util\Various,
17
-PH7\Framework\Date\CDateTime,
18
-PH7\Framework\Security\Security;
13
+use PH7\Framework\Mvc\Model\Engine\Db;
14
+use PH7\Framework\Mvc\Model\DbConfig;
15
+use PH7\Framework\Mvc\Model\Engine\Util\Various;
16
+use PH7\Framework\Date\CDateTime;
17
+use PH7\Framework\Security\Security;
19 18
 
20 19
 // Abstract Class
21 20
 class UserCoreModel extends Framework\Mvc\Model\Engine\Model
Please login to merge, or discard this patch.
_protected/app/system/modules/admin123/assets/ajax/AdsAjax.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\Request\Http, PH7\Framework\Mvc\Model\Design;
11
+use PH7\Framework\Mvc\Request\Http;
12
+use PH7\Framework\Mvc\Model\Design;
12 13
 
13 14
 class AdsAjax
14 15
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/admin123/controllers/ModeratorController.php 1 patch
Unused Use Statements   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,9 @@
 block discarded – undo
7 7
  */
8 8
 namespace PH7;
9 9
 
10
-use PH7\Framework\Url\Header, PH7\Framework\Mvc\Router\Uri, PH7\Framework\Navigation\Page;
10
+use PH7\Framework\Url\Header;
11
+use PH7\Framework\Mvc\Router\Uri;
12
+use PH7\Framework\Navigation\Page;
11 13
 
12 14
 class ModeratorController extends Controller
13 15
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/admin123/controllers/SettingController.php 1 patch
Unused Use Statements   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,9 @@
 block discarded – undo
7 7
  */
8 8
 namespace PH7;
9 9
 
10
-use PH7\Framework\Navigation\Page, PH7\Framework\Url\Header, PH7\Framework\Mvc\Router\Uri;
10
+use PH7\Framework\Navigation\Page;
11
+use PH7\Framework\Url\Header;
12
+use PH7\Framework\Mvc\Router\Uri;
11 13
 
12 14
 class SettingController extends Controller
13 15
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/admin123/controllers/ToolController.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,10 +10,9 @@
 block discarded – undo
10 10
  */
11 11
 namespace PH7;
12 12
 
13
-use
14
-PH7\Framework\Mvc\Model\Engine as D,
15
-PH7\Framework\Url\Header,
16
-PH7\Framework\Mvc\Router\Uri;
13
+use PH7\Framework\Mvc\Model\Engine as D;
14
+use PH7\Framework\Url\Header;
15
+use PH7\Framework\Mvc\Router\Uri;
17 16
 
18 17
 class ToolController extends Controller
19 18
 {
Please login to merge, or discard this patch.
app/system/modules/admin123/forms/processing/AddFakeProfilesFormProcess.php 1 patch
Unused Use Statements   +2 added lines, -6 removed lines patch added patch discarded remove patch
@@ -11,12 +11,8 @@
 block discarded – undo
11 11
 namespace PH7;
12 12
 defined('PH7') or exit('Restricted access');
13 13
 
14
-use
15
-PH7\Framework\Util\Various,
16
-PH7\Framework\Security\Validate\Validate,
17
-PH7\Framework\Ip\Ip,
18
-PH7\Framework\Mvc\Router\Uri,
19
-PH7\Framework\Url\Header;
14
+use PH7\Framework\Security\Validate\Validate;
15
+use PH7\Framework\Ip\Ip;
20 16
 
21 17
 class AddFakeProfilesFormProcess extends Form
22 18
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/admin123/inc/class/ImportUser.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,10 +11,9 @@
 block discarded – undo
11 11
 namespace PH7;
12 12
 defined('PH7') or exit('Restricted access');
13 13
 
14
-use
15
-PH7\Framework\Util\Various,
16
-PH7\Framework\Security\Validate\Validate,
17
-PH7\Framework\Ip\Ip;
14
+use PH7\Framework\Util\Various;
15
+use PH7\Framework\Security\Validate\Validate;
16
+use PH7\Framework\Ip\Ip;
18 17
 
19 18
 /** Reset the time limit and increase the memory **/
20 19
 @set_time_limit(0);
Please login to merge, or discard this patch.
_protected/app/system/modules/admin123/inc/class/Module.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,9 +10,8 @@
 block discarded – undo
10 10
  */
11 11
 namespace PH7;
12 12
 
13
-use
14
-PH7\Framework\Config\Config,
15
-PH7\Framework\File as F;
13
+use PH7\Framework\Config\Config;
14
+use PH7\Framework\File as F;
16 15
 
17 16
 /**
18 17
  * This is usually necessary to import data from remote server.
Please login to merge, or discard this patch.