Completed
Push — feature/api ( 725c17...de88d6 )
by Laurent
01:40
created
list.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -132,12 +132,12 @@  discard block
 block discarded – undo
132 132
     //'t.justif_kilometers'         => array('label' => $langs->trans("Fieldjustif_kilometers"), 'checked' => 1),
133 133
     //'t.entity'=>array('label'=>$langs->trans("Entity"), 'checked'=>1, 'enabled'=>(! empty($conf->multicompany->enabled) && empty($conf->multicompany->transverse_mode))),
134 134
     't.datec'                     => array('label'    => $langs->trans("DateCreationShort"),
135
-                                           'checked'  => 0,
136
-                                           'position' => 500
135
+                                            'checked'  => 0,
136
+                                            'position' => 500
137 137
     ),
138 138
     't.tms'                       => array('label'    => $langs->trans("DateModificationShort"),
139
-                                           'checked'  => 0,
140
-                                           'position' => 500
139
+                                            'checked'  => 0,
140
+                                            'position' => 500
141 141
     ),
142 142
     //'t.statut'=>array('label'=>$langs->trans("Status"), 'checked'=>1, 'position'=>1000),
143 143
 );
@@ -145,9 +145,9 @@  discard block
 block discarded – undo
145 145
 if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label)) {
146 146
     foreach ($extrafields->attribute_label as $key => $val) {
147 147
         $arrayfields["ef." . $key] = array('label'    => $extrafields->attribute_label[$key],
148
-                                           'checked'  => $extrafields->attribute_list[$key],
149
-                                           'position' => $extrafields->attribute_pos[$key],
150
-                                           'enabled'  => $extrafields->attribute_perms[$key]
148
+                                            'checked'  => $extrafields->attribute_list[$key],
149
+                                            'position' => $extrafields->attribute_pos[$key],
150
+                                            'enabled'  => $extrafields->attribute_perms[$key]
151 151
         );
152 152
     }
153 153
 }
Please login to merge, or discard this patch.
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.