Completed
Pull Request — master (#5)
by Laurent
02:35 queued 42s
created
class/bbcvols.class.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -967,7 +967,7 @@
 block discarded – undo
967 967
      */
968 968
     public function getPlaces()
969 969
     {
970
-        return $this->lieuD.' -> '.$this->lieuA;
970
+        return $this->lieuD . ' -> ' . $this->lieuA;
971 971
     }
972 972
 }
973 973
 
Please login to merge, or discard this patch.
generateMonthlyBilling.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -239,9 +239,12 @@
 block discarded – undo
239 239
                     <?php echo $langs->trans('La periode demandée n\'est pas cloturée.') ?>
240 240
                 </p>
241 241
                 <a class="butActionRefused" href="#">Générer</a>
242
-            <?php else: ?>
242
+            <?php else {
243
+    : ?>
243 244
                 <button class="butAction" type="submit">Générer</button>
244
-            <?php endif; ?>
245
+            <?php endif;
246
+}
247
+?>
245 248
 
246 249
         </form>
247 250
     </section>
Please login to merge, or discard this patch.
command/CreateMonthBillCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__.'/CommandInterface.php';
3
+require_once __DIR__ . '/CommandInterface.php';
4 4
 
5 5
 /**
6 6
  * @author Laurent De Coninck <[email protected]>
Please login to merge, or discard this patch.
command/CreateReceiverMonthBillCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 require_once __DIR__ . '/../class/billing/monthly/MonthlyFlightBill.php';
4
-require_once __DIR__.'/CommandInterface.php';
4
+require_once __DIR__ . '/CommandInterface.php';
5 5
 
6 6
 /**
7 7
  * @author Laurent De Coninck <[email protected]>
Please login to merge, or discard this patch.
command/AbstractBillCommandHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__.'/CommandHandlerInterface.php';
3
+require_once __DIR__ . '/CommandHandlerInterface.php';
4 4
 
5 5
 /**
6 6
  * Methods to create a bill.
Please login to merge, or discard this patch.