Completed
Push — master ( 975487...50c5e8 )
by Jeff
04:37
created
controllers/ScreenTemplateController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -327,7 +327,7 @@
 block discarded – undo
327 327
      * @param float $min
328 328
      * @param float $max
329 329
      *
330
-     * @return float random float
330
+     * @return integer random float
331 331
      */
332 332
     public static function randf($min = 0.0, $max = 1.0)
333 333
     {
Please login to merge, or discard this patch.
controllers/FrontendController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@
 block discarded – undo
275 275
     /**
276 276
      * Get client device based on session & cookie.
277 277
      *
278
-     * @return \app\models\Device|null device
278
+     * @return Device device
279 279
      */
280 280
     private function getClientDevice()
281 281
     {
Please login to merge, or discard this patch.
models/Device.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     /**
68 68
      * Get last inserted AUTO_INCREMENT id from database.
69 69
      *
70
-     * @return int last insert id
70
+     * @return string last insert id
71 71
      */
72 72
     public function getLastId()
73 73
     {
Please login to merge, or discard this patch.