Completed
Branch master (6c262f)
by Pierre-Henry
111:59 queued 51:18
created
system/modules/lost-password/forms/processing/ForgotPasswordFormProcess.php 1 patch
Unused Use Statements   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,11 +8,10 @@
 block discarded – undo
8 8
 namespace PH7;
9 9
 defined('PH7') or die('Restricted access');
10 10
 
11
-use
12
-PH7\Framework\Ip\Ip,
13
-PH7\Framework\Util\Various,
14
-PH7\Framework\Mail\Mail,
15
-PH7\Framework\Mvc\Router\Uri;
11
+use PH7\Framework\Ip\Ip;
12
+use PH7\Framework\Util\Various;
13
+use PH7\Framework\Mail\Mail;
14
+use PH7\Framework\Mvc\Router\Uri;
16 15
 
17 16
 class ForgotPasswordFormProcess extends Form
18 17
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/mail/forms/processing/MailFormProcess.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 die('Restricted access');
10 10
 
11
-use
12
-PH7\Framework\Mvc\Model\DbConfig,
13
-PH7\Framework\Mail\Mail,
14
-PH7\Framework\Mvc\Request\Http,
15
-PH7\Framework\Mvc\Router\Uri,
16
-PH7\Framework\Url\Header;
11
+use PH7\Framework\Mvc\Model\DbConfig;
12
+use PH7\Framework\Mail\Mail;
13
+use PH7\Framework\Mvc\Request\Http;
14
+use PH7\Framework\Mvc\Router\Uri;
15
+use PH7\Framework\Url\Header;
17 16
 
18 17
 class MailFormProcess extends Form
19 18
 {
Please login to merge, or discard this patch.
app/system/modules/newsletter/forms/processing/SubscriptionFormProcess.php 1 patch
Unused Use Statements   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -8,13 +8,12 @@
 block discarded – undo
8 8
 namespace PH7;
9 9
 defined('PH7') or exit('Restricted access');
10 10
 
11
-use
12
-PH7\Framework\Util\Various,
13
-PH7\Framework\Cookie\Cookie,
14
-PH7\Framework\Ip\Ip,
15
-PH7\Framework\Date\CDateTime,
16
-PH7\Framework\Mvc\Router\Uri,
17
-PH7\Framework\Mail\Mail;
11
+use PH7\Framework\Util\Various;
12
+use PH7\Framework\Cookie\Cookie;
13
+use PH7\Framework\Ip\Ip;
14
+use PH7\Framework\Date\CDateTime;
15
+use PH7\Framework\Mvc\Router\Uri;
16
+use PH7\Framework\Mail\Mail;
18 17
 
19 18
 class SubscriptionFormProcess extends Form
20 19
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/newsletter/inc/class/Newsletter.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\Mail\Mail;
11
+use PH7\Framework\Mvc\Request\Http;
12
+use PH7\Framework\Mail\Mail;
12 13
 
13 14
 /** Reset the time limit and increase the memory **/
14 15
 @set_time_limit(0);
Please login to merge, or discard this patch.
_protected/app/system/modules/note/inc/class/Note.php 1 patch
Unused Use Statements   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,8 @@
 block discarded – undo
6 6
  * @package        PH7 / App / System / Module / Note / Inc / Class
7 7
  */
8 8
 namespace PH7;
9
-use PH7\Framework\Util\Various, PH7\Framework\Config\Config;
9
+use PH7\Framework\Util\Various;
10
+use PH7\Framework\Config\Config;
10 11
 
11 12
 class Note extends WriteCore
12 13
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/payment/controllers/AdminController.php 1 patch
Unused Use Statements   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,8 @@
 block discarded – undo
9 9
  * @version        1.0
10 10
  */
11 11
 namespace PH7;
12
-use PH7\Framework\Url\Header, PH7\Framework\Mvc\Router\Uri;
12
+use PH7\Framework\Url\Header;
13
+use PH7\Framework\Mvc\Router\Uri;
13 14
 
14 15
 class AdminController extends MainController
15 16
 {
Please login to merge, or discard this patch.
app/system/modules/picture/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/user/controllers/SettingController.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\Url\Header, PH7\Framework\Mvc\Router\Uri;
10
+use PH7\Framework\Url\Header;
11
+use PH7\Framework\Mvc\Router\Uri;
11 12
 
12 13
 class SettingController extends Controller
13 14
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/video/forms/processing/VideoFormProcess.php 1 patch
Unused Use Statements   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -15,13 +15,12 @@
 block discarded – undo
15 15
 namespace PH7;
16 16
 defined('PH7') or exit('Restricted access');
17 17
 
18
-use
19
-PH7\Framework\Util\Various,
20
-PH7\Framework\Mvc\Model\DbConfig,
21
-PH7\Framework\Mvc\Router\Uri,
22
-PH7\Framework\Url\Header,
23
-PH7\Framework\File as F,
24
-PH7\Framework\Video as V;
18
+use PH7\Framework\Util\Various;
19
+use PH7\Framework\Mvc\Model\DbConfig;
20
+use PH7\Framework\Mvc\Router\Uri;
21
+use PH7\Framework\Url\Header;
22
+use PH7\Framework\File as F;
23
+use PH7\Framework\Video as V;
25 24
 
26 25
 class VideoFormProcess extends Form
27 26
 {
Please login to merge, or discard this patch.