Completed
Branch master (6c262f)
by Pierre-Henry
111:59 queued 51:18
created
_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/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.
_protected/framework/Cache/Cache.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\Cache;
14 14
 defined('PH7') or exit('Restricted access');
15 15
 
16
-use
17
-PH7\Framework\Core\Kernel,
18
-PH7\Framework\Config\Config,
19
-PH7\Framework\File\File;
16
+use PH7\Framework\Core\Kernel;
17
+use PH7\Framework\Config\Config;
18
+use PH7\Framework\File\File;
20 19
 
21 20
 class Cache
22 21
 {
Please login to merge, or discard this patch.
_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/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.