Completed
Branch master (ae19d9)
by Pierre-Henry
36:56
created
_protected/app/system/modules/invite/forms/processing/InviteFormProcess.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,10 +8,9 @@
 block discarded – undo
8 8
 namespace PH7;
9 9
 defined('PH7') or exit('Restricted access');
10 10
 
11
-use
12
-PH7\Framework\Security\Validate\Validate,
13
-PH7\Framework\Mvc\Router\Uri,
14
-PH7\Framework\Mail\Mail;
11
+use PH7\Framework\Security\Validate\Validate;
12
+use PH7\Framework\Mvc\Router\Uri;
13
+use PH7\Framework\Mail\Mail;
15 14
 
16 15
 class InviteFormProcess extends Form
17 16
 {
Please login to merge, or discard this patch.
system/modules/lost-password/forms/processing/ForgotPasswordFormProcess.php 2 patches
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.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@
 block discarded – undo
19 19
 
20 20
     private $oUserModel;
21 21
 
22
+    /**
23
+     * @param string $sTable
24
+     */
22 25
     public function __construct($sTable)
23 26
     {
24 27
         parent::__construct();
Please login to merge, or discard this patch.
_protected/app/system/modules/love-calculator/inc/class/Calculator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     /**
20 20
      * @param string $sName
21 21
      * @param string $sSecondName
22
-     * @return object this
22
+     * @return Calculator this
23 23
      */
24 24
     public function __construct($sName, $sSecondName)
25 25
     {
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-     * @return integer Amount
82
+     * @return string Amount
83 83
      */
84 84
     public function get()
85 85
     {
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.