Completed
Branch master (c33d8c)
by Pierre-Henry
35:50
created
_protected/framework/Mvc/Model/Engine/Util/Various.class.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\Framework\Mvc\Model\Engine\Util;
13 13
 defined('PH7') or exit('Restricted access');
14 14
 
15
-use PH7\Framework\Mvc\Model\Engine\Db, PH7\Framework\Pattern\Statik;
15
+use PH7\Framework\Mvc\Model\Engine\Db;
16
+use PH7\Framework\Pattern\Statik;
16 17
 
17 18
 class Various
18 19
 {
Please login to merge, or discard this patch.
_protected/framework/Mvc/Request/Http.class.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,9 +15,8 @@
 block discarded – undo
15 15
 namespace PH7\Framework\Mvc\Request;
16 16
 defined('PH7') or exit('Restricted access');
17 17
 
18
-use
19
-PH7\Framework\Registry\Registry,
20
-PH7\Framework\Security as Secty;
18
+use PH7\Framework\Registry\Registry;
19
+use PH7\Framework\Security as Secty;
21 20
 
22 21
 /**
23 22
  * Small example of using this class.
Please login to merge, or discard this patch.
_protected/framework/Mvc/Router/Uri.class.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\Framework\Mvc\Router;
12 12
 defined('PH7') or exit('Restricted access');
13 13
 
14
-use PH7\Framework\Pattern\Statik, PH7\Framework\Parse\Url;
14
+use PH7\Framework\Pattern\Statik;
15
+use PH7\Framework\Parse\Url;
15 16
 
16 17
 class Uri
17 18
 {
Please login to merge, or discard this patch.
_protected/framework/Url/Header.class.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\Url;
14 14
 defined('PH7') or exit('Restricted access');
15 15
 
16
-use
17
-PH7\Framework\Layout\Html\Design,
18
-PH7\Framework\Http\Http,
19
-PH7\Framework\Mvc\Request\Http as HttpRequest;
16
+use PH7\Framework\Layout\Html\Design;
17
+use PH7\Framework\Http\Http;
18
+use PH7\Framework\Mvc\Request\Http as HttpRequest;
20 19
 
21 20
 class Header
22 21
 {
Please login to merge, or discard this patch.
_protected/framework/Video/Api.class.php 1 patch
Unused Use Statements   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,8 @@
 block discarded – undo
13 13
 namespace PH7\Framework\Video;
14 14
 defined('PH7') or exit('Restricted access');
15 15
 
16
-use PH7\Framework\Http\Http, PH7\Framework\Config\Config;
16
+use PH7\Framework\Http\Http;
17
+use PH7\Framework\Config\Config;
17 18
 
18 19
 class Api
19 20
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/forum/config/Permission.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,10 +9,9 @@
 block discarded – undo
9 9
 
10 10
 defined('PH7') or die('Restricted access');
11 11
 
12
-use
13
-PH7\Framework\Layout\Html\Design,
14
-PH7\Framework\Mvc\Router\Uri,
15
-PH7\Framework\Url\Header;
12
+use PH7\Framework\Layout\Html\Design;
13
+use PH7\Framework\Mvc\Router\Uri;
14
+use PH7\Framework\Url\Header;
16 15
 
17 16
 class Permission extends PermissionCore
18 17
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/game/controllers/AdminController.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\Router\Uri, PH7\Framework\Url\Header;
10
+use PH7\Framework\Mvc\Router\Uri;
11
+use PH7\Framework\Url\Header;
11 12
 
12 13
 class AdminController extends MainController
13 14
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/note/config/Permission.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,10 +9,9 @@
 block discarded – undo
9 9
 
10 10
 defined('PH7') or die('Restricted access');
11 11
 
12
-use
13
-PH7\Framework\Layout\Html\Design,
14
-PH7\Framework\Mvc\Router\Uri,
15
-PH7\Framework\Url\Header;
12
+use PH7\Framework\Layout\Html\Design;
13
+use PH7\Framework\Mvc\Router\Uri;
14
+use PH7\Framework\Url\Header;
16 15
 
17 16
 class Permission extends PermissionCore
18 17
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/user/forms/processing/EditFormProcess.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\Cache\Cache, PH7\Framework\Mvc\Request\Http;
11
+use PH7\Framework\Cache\Cache;
12
+use PH7\Framework\Mvc\Request\Http;
12 13
 
13 14
 class EditFormProcess extends Form
14 15
 {
Please login to merge, or discard this patch.