Completed
Branch master (c33d8c)
by Pierre-Henry
50:46 queued 15:45
created
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/report/inc/class/Report.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      * Add the fields in the database
31 31
      *
32 32
      * @param array $aData The data to  add
33
-     * @return object this
33
+     * @return Report this
34 34
      */
35 35
     public function add(array $aData)
36 36
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * Get status
74 74
      *
75
-     * @return mixed (string | boolean) Text of the statute or boolean
75
+     * @return boolean (string | boolean) Text of the statute or boolean
76 76
      */
77 77
     public function get()
78 78
     {
Please login to merge, or discard this 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\Mail\Mail,
12
-PH7\Framework\Layout\Tpl\Engine\PH7Tpl\PH7Tpl,
13
-PH7\Framework\Date\CDateTime,
14
-PH7\Framework\Mvc\Model\DbConfig;
10
+use PH7\Framework\Mail\Mail;
11
+use PH7\Framework\Layout\Tpl\Engine\PH7Tpl\PH7Tpl;
12
+use PH7\Framework\Date\CDateTime;
13
+use PH7\Framework\Mvc\Model\DbConfig;
15 14
 
16 15
 class Report
17 16
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/report/models/ReportModel.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -56,6 +56,9 @@
 block discarded – undo
56 56
         return (!empty($iId)) ? $rStmt->fetch(\PDO::FETCH_OBJ) : $rStmt->fetchAll(\PDO::FETCH_OBJ);
57 57
     }
58 58
 
59
+    /**
60
+     * @param string $iReportId
61
+     */
59 62
     public function delete($iReportId)
60 63
     {
61 64
         $rStmt = Db::getInstance()->prepare('DELETE FROM' . Db::prefix('Report') . 'WHERE reportId = :reportId LIMIT 1');
Please login to merge, or discard this patch.
_protected/app/system/modules/user/controllers/MainController.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\Mobile\MobApp, PH7\Framework\Mvc\Model\DbConfig;
10
+use PH7\Framework\Mobile\MobApp;
11
+use PH7\Framework\Mvc\Model\DbConfig;
11 12
 
12 13
 class MainController extends Controller
13 14
 {
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.