Completed
Branch master (6c262f)
by Pierre-Henry
111:59 queued 51:18
created
_protected/app/system/modules/forum/forms/processing/MsgFormProcess.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 exit('Restricted access');
10 10
 
11
-use
12
-PH7\Framework\Mvc\Model\Engine\Db,
13
-PH7\Framework\Mvc\Model\DbConfig,
14
-PH7\Framework\Mvc\Request\Http,
15
-PH7\Framework\Mvc\Router\Uri,
16
-PH7\Framework\Url\Header;
11
+use PH7\Framework\Mvc\Model\Engine\Db;
12
+use PH7\Framework\Mvc\Model\DbConfig;
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 MsgFormProcess extends Form
19 18
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/game/forms/AdminEditForm.php 1 patch
Unused Use Statements   +3 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,11 +7,9 @@
 block discarded – undo
7 7
  */
8 8
 namespace PH7;
9 9
 
10
-use
11
-PH7\Framework\Config\Config,
12
-PH7\Framework\Str\Str,
13
-PH7\Framework\Mvc\Request\Http,
14
-PH7\Framework\Mvc\Router\Uri;
10
+use PH7\Framework\Config\Config;
11
+use PH7\Framework\Str\Str;
12
+use PH7\Framework\Mvc\Request\Http;
15 13
 
16 14
 class AdminEditForm
17 15
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/game/forms/processing/AdminFormProcess.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\Engine\Db,
13
-PH7\Framework\Image\Image,
14
-PH7\Framework\Util\Various,
15
-PH7\Framework\Url\Header,
16
-PH7\Framework\Mvc\Router\Uri;
11
+use PH7\Framework\Mvc\Model\Engine\Db;
12
+use PH7\Framework\Image\Image;
13
+use PH7\Framework\Util\Various;
14
+use PH7\Framework\Url\Header;
15
+use PH7\Framework\Mvc\Router\Uri;
17 16
 
18 17
 class AdminFormProcess extends Form
19 18
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/game/models/GameModel.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -12,6 +12,10 @@
 block discarded – undo
12 12
 class GameModel extends GameCoreModel
13 13
 {
14 14
 
15
+    /**
16
+     * @param integer $iOffset
17
+     * @param integer $iLimit
18
+     */
15 19
     public function getCategory($iCategoryId = null, $iOffset, $iLimit, $bCount = false)
16 20
     {
17 21
         $this->cache->start(static::CACHE_GROUP, 'category' . $iCategoryId . $iOffset . $iLimit . $bCount, static::CACHE_TIME);
Please login to merge, or discard this patch.
_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.