Completed
Branch master (4c5647)
by Pierre-Henry
36:49
created
_protected/app/system/modules/user/controllers/ProfileController.php 1 patch
Unused Use Statements   +10 added lines, -11 removed lines patch added patch discarded remove patch
@@ -10,17 +10,16 @@
 block discarded – undo
10 10
  */
11 11
 namespace PH7;
12 12
 
13
-use
14
-PH7\Framework\Mvc\Model\DbConfig,
15
-PH7\Framework\Analytics\Statistic,
16
-PH7\Framework\Parse\Emoticon,
17
-PH7\Framework\Security\Ban\Ban,
18
-PH7\Framework\Math\Measure\Year,
19
-PH7\Framework\Security\CSRF\Token,
20
-PH7\Framework\Geo\Map\Map,
21
-PH7\Framework\Url\Url,
22
-PH7\Framework\Mvc\Router\Uri,
23
-PH7\Framework\Date\Various as VDate;
13
+use PH7\Framework\Mvc\Model\DbConfig;
14
+use PH7\Framework\Analytics\Statistic;
15
+use PH7\Framework\Parse\Emoticon;
16
+use PH7\Framework\Security\Ban\Ban;
17
+use PH7\Framework\Math\Measure\Year;
18
+use PH7\Framework\Security\CSRF\Token;
19
+use PH7\Framework\Geo\Map\Map;
20
+use PH7\Framework\Url\Url;
21
+use PH7\Framework\Mvc\Router\Uri;
22
+use PH7\Framework\Date\Various as VDate;
24 23
 
25 24
 class ProfileController extends Controller
26 25
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/user/controllers/SignupController.php 1 patch
Unused Use Statements   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,8 @@
 block discarded – undo
10 10
  */
11 11
 namespace PH7;
12 12
 
13
-use PH7\Framework\Mvc\Router\Uri, PH7\Framework\Url\Header;
13
+use PH7\Framework\Mvc\Router\Uri;
14
+use PH7\Framework\Url\Header;
14 15
 
15 16
 class SignupController extends Controller
16 17
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/user/forms/EditForm.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\Session\Session,
12
-PH7\Framework\Mvc\Request\Http,
13
-PH7\Framework\Mvc\Router\Uri,
14
-PH7\Framework\Date\CDateTime;
10
+use PH7\Framework\Session\Session;
11
+use PH7\Framework\Mvc\Request\Http;
12
+use PH7\Framework\Mvc\Router\Uri;
13
+use PH7\Framework\Date\CDateTime;
15 14
 
16 15
 class EditForm
17 16
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/user/forms/JoinForm.php 1 patch
Unused Use Statements   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -7,13 +7,12 @@
 block discarded – undo
7 7
  */
8 8
 namespace PH7;
9 9
 
10
-use
11
-PH7\Framework\Geo\Ip\Geo,
12
-PH7\Framework\Module\Various as SysMod,
13
-PH7\Framework\Mvc\Model\DbConfig,
14
-PH7\Framework\Session\Session,
15
-PH7\Framework\Mvc\Router\Uri,
16
-PH7\Framework\Url\Header;
10
+use PH7\Framework\Geo\Ip\Geo;
11
+use PH7\Framework\Module\Various as SysMod;
12
+use PH7\Framework\Mvc\Model\DbConfig;
13
+use PH7\Framework\Session\Session;
14
+use PH7\Framework\Mvc\Router\Uri;
15
+use PH7\Framework\Url\Header;
17 16
 
18 17
 class JoinForm
19 18
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/validate-site/config/Permission.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\Url\Header, PH7\Framework\Mvc\Router\Uri;
11
+use PH7\Framework\Url\Header;
12
+use PH7\Framework\Mvc\Router\Uri;
12 13
 
13 14
 class Permission extends PermissionCore
14 15
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/validate-site/controllers/MainController.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\Layout\Html\Design,
12
-PH7\Framework\Mvc\Model\DbConfig,
13
-PH7\Framework\Cache\Cache,
14
-PH7\Framework\Url\Header;
10
+use PH7\Framework\Layout\Html\Design;
11
+use PH7\Framework\Mvc\Model\DbConfig;
12
+use PH7\Framework\Cache\Cache;
13
+use PH7\Framework\Url\Header;
15 14
 
16 15
 class MainController extends Controller
17 16
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/video/forms/EditAlbumForm.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\Config\Config,
12
-PH7\Framework\Session\Session,
13
-PH7\Framework\Mvc\Request\Http;
10
+use PH7\Framework\Config\Config;
11
+use PH7\Framework\Session\Session;
12
+use PH7\Framework\Mvc\Request\Http;
14 13
 
15 14
 class EditAlbumForm
16 15
 {
Please login to merge, or discard this patch.
app/system/modules/video/forms/processing/EditAlbumFormProcess.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\Url\Header;
11
+use PH7\Framework\Mvc\Router\Uri;
12
+use PH7\Framework\Url\Header;
12 13
 
13 14
 class EditAlbumFormProcess extends Form
14 15
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/video/forms/VideoForm.php 1 patch
Unused Use Statements   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -7,12 +7,11 @@
 block discarded – undo
7 7
  */
8 8
 namespace PH7;
9 9
 
10
-use
11
-PH7\Framework\Config\Config,
12
-PH7\Framework\Mvc\Model\DbConfig,
13
-PH7\Framework\Session\Session,
14
-PH7\Framework\Mvc\Request\Http,
15
-PH7\Framework\Mvc\Router\Uri;
10
+use PH7\Framework\Config\Config;
11
+use PH7\Framework\Mvc\Model\DbConfig;
12
+use PH7\Framework\Session\Session;
13
+use PH7\Framework\Mvc\Request\Http;
14
+use PH7\Framework\Mvc\Router\Uri;
16 15
 
17 16
 class VideoForm
18 17
 {
Please login to merge, or discard this patch.