Completed
Branch master (57084d)
by Pierre-Henry
35:51
created
_protected/app/system/modules/user/controllers/BrowseController.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,10 +7,9 @@
 block discarded – undo
7 7
  */
8 8
 namespace PH7;
9 9
 
10
-use
11
-PH7\Framework\Navigation\Page,
12
-PH7\Framework\Mvc\Router\Uri,
13
-PH7\Framework\Url\Header;
10
+use PH7\Framework\Navigation\Page;
11
+use PH7\Framework\Mvc\Router\Uri;
12
+use PH7\Framework\Url\Header;
14 13
 
15 14
 class BrowseController extends Controller
16 15
 {
Please login to merge, or discard this patch.
_protected/app/system/core/models/UserCoreModel.php 1 patch
Unused Use Statements   +7 added lines, -8 removed lines patch added patch discarded remove patch
@@ -10,14 +10,13 @@
 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\Str\Str,
18
-PH7\Framework\Date\CDateTime,
19
-PH7\Framework\Session\Session,
20
-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\Str\Str;
17
+use PH7\Framework\Date\CDateTime;
18
+use PH7\Framework\Session\Session;
19
+use PH7\Framework\Security\Security;
21 20
 
22 21
 // Abstract Class
23 22
 class UserCoreModel extends Framework\Mvc\Model\Engine\Model
Please login to merge, or discard this patch.
_protected/framework/Loader/Autoloader.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,10 +13,9 @@
 block discarded – undo
13 13
 namespace PH7\Framework\Loader;
14 14
 defined('PH7') or exit('Restricted access');
15 15
 
16
-use
17
-PH7\Framework\File\File,
18
-PH7\Framework\Registry\Registry,
19
-PH7\Framework\Date\Various as VDate;
16
+use PH7\Framework\File\File;
17
+use PH7\Framework\Registry\Registry;
18
+use PH7\Framework\Date\Various as VDate;
20 19
 
21 20
 /**
22 21
  * We include the Singleton trait before use, because at this stage the class can not load the trait automatically.
Please login to merge, or discard this patch.
_protected/framework/Mvc/Controller/Controller.class.php 1 patch
Unused Use Statements   +8 added lines, -9 removed lines patch added patch discarded remove patch
@@ -13,15 +13,14 @@
 block discarded – undo
13 13
 namespace PH7\Framework\Mvc\Controller;
14 14
 defined('PH7') or exit('Restricted access');
15 15
 
16
-use
17
-PH7\Framework\Security\Ban\Ban,
18
-PH7\Framework\Ip\Ip,
19
-PH7\Framework\Geo\Ip\Geo,
20
-PH7\Framework\Http\Http,
21
-PH7\Framework\Mvc\Router\Uri,
22
-PH7\Framework\Mobile\MobApp,
23
-PH7\Framework\Module\Various as SysMod,
24
-PH7\Framework\Mvc\Model as M;
16
+use PH7\Framework\Security\Ban\Ban;
17
+use PH7\Framework\Ip\Ip;
18
+use PH7\Framework\Geo\Ip\Geo;
19
+use PH7\Framework\Http\Http;
20
+use PH7\Framework\Mvc\Router\Uri;
21
+use PH7\Framework\Mobile\MobApp;
22
+use PH7\Framework\Module\Various as SysMod;
23
+use PH7\Framework\Mvc\Model as M;
25 24
 
26 25
 abstract class Controller extends \PH7\Framework\Core\Core
27 26
 {
Please login to merge, or discard this patch.