Completed
Push — feature/number_enhancement ( b65f30 )
by Laurent
01:38
created
lib/flightLog.lib.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
 }
109 109
 
110 110
 /**
111
- * @param null $year
111
+ * @param integer $year
112 112
  * @param null $pilotId
113 113
  * @param null $quarter
114 114
  * @param bool $groupBy
Please login to merge, or discard this patch.
class/bbctypes.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -645,7 +645,7 @@
 block discarded – undo
645 645
     }
646 646
 
647 647
     /**
648
-     * @return array|BbctypesLine[]
648
+     * @return BbctypesLine[]
649 649
      */
650 650
     public function getLines()
651 651
     {
Please login to merge, or discard this patch.
Form/Form.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,6 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
     /**
97 97
      * @inheritDoc
98
+     * @param string $fieldName
98 99
      */
99 100
     public function remove($fieldName)
100 101
     {
@@ -142,7 +143,7 @@  discard block
 block discarded – undo
142 143
     }
143 144
 
144 145
     /**
145
-     * @param null|\ValidatorInterface $validator
146
+     * @param ValidatorInterface $validator
146 147
      *
147 148
      * @return Form
148 149
      */
Please login to merge, or discard this patch.
command/CreateOrderCommandHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
 
112 112
     /**
113 113
      * @param Product $flightProduct
114
-     * @param float|int $pricePerPax
114
+     * @param integer $pricePerPax
115 115
      *
116 116
      * @return float|int
117 117
      */
Please login to merge, or discard this patch.
Http/Web/Form/DamageCreationForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     }
33 33
 
34 34
     /**
35
-     * @return CreateDamageCommand|\stdClass|null
35
+     * @return CreateDamageCommand
36 36
      */
37 37
     public function getObject()
38 38
     {
Please login to merge, or discard this patch.
Application/Damage/Command/CreateDamageCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
      */
28 28
     private $billId;
29 29
 
30
+    /**
31
+     * @param integer $authorId
32
+     */
30 33
     public function __construct($authorId)
31 34
     {
32 35
         $this->authorId = $authorId;
Please login to merge, or discard this patch.
Infrastructure/Common/Routes/Route.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,6 @@
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @param string $action
65 64
      *
66 65
      * @return bool
67 66
      */
Please login to merge, or discard this patch.
class/flight/FlightTypeCount.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $type
30
-     * @param float    $count
30
+     * @param integer    $count
31 31
      * @param int    $factor
32 32
      */
33 33
     public function __construct($type, $count = 0, $factor = 0)
Please login to merge, or discard this patch.