Completed
Branch master (2665c2)
by Pierre-Henry
33:16
created
_protected/app/system/modules/video/forms/processing/VideoFormProcess.php 1 patch
Unused Use Statements   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -15,13 +15,12 @@
 block discarded – undo
15 15
 namespace PH7;
16 16
 defined('PH7') or exit('Restricted access');
17 17
 
18
-use
19
-PH7\Framework\Util\Various,
20
-PH7\Framework\Mvc\Model\DbConfig,
21
-PH7\Framework\Mvc\Router\Uri,
22
-PH7\Framework\Url\Header,
23
-PH7\Framework\File as F,
24
-PH7\Framework\Video as V;
18
+use PH7\Framework\Util\Various;
19
+use PH7\Framework\Mvc\Model\DbConfig;
20
+use PH7\Framework\Mvc\Router\Uri;
21
+use PH7\Framework\Url\Header;
22
+use PH7\Framework\File as F;
23
+use PH7\Framework\Video as V;
25 24
 
26 25
 class VideoFormProcess extends Form
27 26
 {
Please login to merge, or discard this patch.
_protected/app/system/modules/xml/inc/class/DateFormat.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-     * @param char $cFormat
41
+     * @param string $cFormat
42 42
      * @param string $sDate
43 43
      * @return string
44 44
      * @throws \PH7\Framework\Date\Exception If the date format is incorrect.
Please login to merge, or discard this patch.
_protected/framework/Analytics/GoogleAnalyticsAPI.class.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -361,7 +361,6 @@
 block discarded – undo
361 361
      * For all the parameters : http://code.google.com/intl/fr-FR/apis/analytics/docs/gdata/gdataReferenceDataFeed.html
362 362
      *
363 363
      * @param string $metrics the metrics
364
-     * @param string $uri the url of the website page (ex : /myurl/)
365 364
      *
366 365
      * @return array
367 366
      */
Please login to merge, or discard this patch.
_protected/framework/Compress/Minify/Js.class.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -229,6 +229,7 @@
 block discarded – undo
229 229
   /**
230 230
    * Is $c a letter, digit, underscore, dollar sign, or non-ASCII character.
231 231
    *
232
+   * @param string $c
232 233
    * @return bool
233 234
    */
234 235
   protected function isAlphaNum($c)
Please login to merge, or discard this patch.
_protected/framework/Layout/Form/Engine/PFBC/Element.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -198,6 +198,9 @@
 block discarded – undo
198 198
         $this->form = $form;
199 199
     }
200 200
 
201
+    /**
202
+     * @param string $id
203
+     */
201 204
     public function setID($id)
202 205
     {
203 206
         $this->attributes['id'] = $id;
Please login to merge, or discard this patch.
_protected/framework/Layout/Form/Form.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
      * Get Time text.
115 115
      *
116 116
      * @param integer $iWaitTime
117
-     * @return integer
117
+     * @return string
118 118
      */
119 119
     private static function _getTimeText($iWaitTime)
120 120
     {
Please login to merge, or discard this patch.
_protected/framework/Mvc/Model/Engine/Util/Various.class.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * Convert mod to table.
48 48
      *
49 49
      * @param string $Mod
50
-     * @return mixed (string | void) Returns the table if it is correct.
50
+     * @return string (string | void) Returns the table if it is correct.
51 51
      * @throws \PH7\Framework\Mvc\Model\Engine\Util\Various::launchErr() If the table is not valid.
52 52
      */
53 53
     public static function convertModToTable($Mod)
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      * @see \PH7\Framework\Mvc\Model\Engine\Util\Various::launchErr()
120 120
      *
121 121
      * @param string $sTable
122
-     * @return mixed (string | void) Returns the table if it is correct.
122
+     * @return string (string | void) Returns the table if it is correct.
123 123
      * @throws \PH7\Framework\Mvc\Model\Engine\Util\Various::launchErr() If the table is not valid.
124 124
      */
125 125
     public static function convertTableToId($sTable)
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
      * @see \PH7\Framework\Mvc\Model\Engine\Util\Various::launchErr()
181 181
      *
182 182
      * @param string $sTable
183
-     * @return mixed (string | void) Returns the table if it is correct.
183
+     * @return string|null (string | void) Returns the table if it is correct.
184 184
      * @throws \PH7\Framework\Mvc\Model\Engine\Util\Various::launchErr() If the table is not valid.
185 185
      */
186 186
     public static function checkTable($sTable)
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
      * @see \PH7\Framework\Mvc\Model\Engine\Util\Various::launchErr()
213 213
      *
214 214
      * @param string $sTable
215
-     * @return mixed (string | void) Returns the table if it is correct.
215
+     * @return string|null (string | void) Returns the table if it is correct.
216 216
      * @throws \PH7\Framework\Mvc\Model\Engine\Util\Various::launchErr() If the table is not valid.
217 217
      */
218 218
     public static function checkModelTable($sTable)
Please login to merge, or discard this 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/Security/Validate/Filter.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -585,7 +585,7 @@
 block discarded – undo
585 585
      * things like j a v a s c r i p t
586 586
      *
587 587
      * @param    type
588
-     * @return    type
588
+     * @return    string
589 589
      */
590 590
     protected function _compact_exploded_words($matches)
591 591
     {
Please login to merge, or discard this patch.
_protected/framework/Structure/General.class.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,6 @@
 block discarded – undo
31 31
      /**
32 32
       * Emit a signal.
33 33
       *
34
-      * @param mixed $mVar [, string $... ]
35 34
       * @return string
36 35
       */
37 36
      public static function emit()
Please login to merge, or discard this patch.