Completed
Branch master (bf361a)
by Pierre-Henry
35:18
created
_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/assets/ajax/MailAjax.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\Session\Session, PH7\Framework\Mvc\Request\Http;
11
+use PH7\Framework\Session\Session;
12
+use PH7\Framework\Mvc\Request\Http;
12 13
 
13 14
 class Mail
14 15
 {
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.
_protected/app/system/modules/payment/controllers/MainController.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,9 +10,8 @@
 block discarded – undo
10 10
  */
11 11
 namespace PH7;
12 12
 
13
-use
14
-PH7\Framework\Mvc\Model\DbConfig,
15
-PH7\Framework\Mail\Mail;
13
+use PH7\Framework\Mvc\Model\DbConfig;
14
+use PH7\Framework\Mail\Mail;
16 15
 
17 16
 class MainController extends Controller
18 17
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/payment/inc/class/Api.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\Registry\Registry, PH7\Framework\Ip\Ip;
13
+use PH7\Framework\Registry\Registry;
14
+use PH7\Framework\Ip\Ip;
14 15
 
15 16
 trait Api
16 17
 {
Please login to merge, or discard this patch.