Completed
Push — master ( 6f7763...5bdd2e )
by Laurent
04:58
created
generateMonthlyBilling.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
 if ($action == EXPENSE_REPORT_GENERATOR_ACTION_GENERATE) {
96 96
     try {
97 97
 
98
-        $command = new CreateMonthBillCommand( $type, $publicNote, $privateNote, $year, $month);
98
+        $command = new CreateMonthBillCommand($type, $publicNote, $privateNote, $year, $month);
99 99
         $handler->handle($command);
100 100
         dol_htmloutput_mesg('Génération : OK');
101 101
     } catch (Exception $e) {
Please login to merge, or discard this patch.
core/cron/BbcMonthlyFlightsBillCron.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
         try {
55 55
 
56
-            if(date('d')>=15){
56
+            if (date('d') >= 15) {
57 57
                 dol_syslog('Monthly bill generation : date over');
58 58
                 return -2;
59 59
             }
Please login to merge, or discard this patch.
validators/FlightValidator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,21 +60,21 @@
 block discarded – undo
60 60
             $this->addError('nbrPax', 'Erreur le nombre de passager est un nombre négatif.');
61 61
         }
62 62
 
63
-        if($vol->mustHavePax()){
63
+        if ($vol->mustHavePax()) {
64 64
             if (!$vol->hasPax()) {
65 65
                 $this->addError('nbrPax', 'Erreur ce type de vol doit etre fait avec des passagers.');
66 66
             }
67 67
 
68
-            if(empty(trim($vol->getPassengerNames()))){
68
+            if (empty(trim($vol->getPassengerNames()))) {
69 69
                 $this->addError('passenger_names', 'Le nom des passagers est obligatoire.');
70 70
             }
71 71
 
72
-            if(empty(trim($vol->getPassengerNames()))){
72
+            if (empty(trim($vol->getPassengerNames()))) {
73 73
                 $this->addError('passenger_names', 'Le nom des passagers est obligatoire.');
74 74
             }
75 75
 
76 76
             $passengers = explode(';', $vol->getPassengerNames());
77
-            if(count($passengers) !== $vol->getNumberOfPassengers()){
77
+            if (count($passengers) !== $vol->getNumberOfPassengers()) {
78 78
                 $this->addError('passenger_names', 'Le nombre de noms des passagers doit être égale au nombre de passagers.');
79 79
             }
80 80
         }
Please login to merge, or discard this patch.
readFlights.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@
 block discarded – undo
274 274
 print '<td>' . $totalT3 . '</td>';
275 275
 print '<td></td>';
276 276
 
277
-print '<td>' . $totalT4. '</td>';
277
+print '<td>' . $totalT4 . '</td>';
278 278
 print '<td></td>';
279 279
 
280 280
 print '<td>' . $totalT5 . '</td>';
Please login to merge, or discard this patch.