Completed
Push — feature/ci_labeler ( 2b0e25 )
by Laurent
37s
created
Flight/Query/Repository/GetBillableFlightPerMonthQueryRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,13 +64,13 @@
 block discarded – undo
64 64
 
65 65
         $stats = new BillableFlightByYearMonth();
66 66
 
67
-        for($i = 0; $i < $num ; $i++) {
67
+        for ($i = 0; $i < $num; $i++) {
68 68
             $properties = $this->db->fetch_array($resql);
69 69
             $stat = Statistic::fromArray($properties);
70 70
             $stats->add($stat);
71 71
         }
72 72
 
73
-        $stats->add(new Statistic(0,1,(new \DateTime())->format('Y')));
73
+        $stats->add(new Statistic(0, 1, (new \DateTime())->format('Y')));
74 74
 
75 75
         return $stats;
76 76
     }
Please login to merge, or discard this patch.
Application/Flight/ViewModel/BillableFlightByYearMonth.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@  discard block
 block discarded – undo
16 16
 
17 17
     public function add(Statistic $stat)
18 18
     {
19
-        if(!isset($this->data[$stat->year()])){
19
+        if (!isset($this->data[$stat->year()])) {
20 20
             $this->data[$stat->year()] = [];
21
-            for($i = 1 ; $i <= 12 ; $i++){
21
+            for ($i = 1; $i <= 12; $i++) {
22 22
                 $this->data[$stat->year()][$i] = new Statistic(0, $stat->month(), $stat->year());
23 23
             }
24 24
         }
@@ -26,11 +26,11 @@  discard block
 block discarded – undo
26 26
         $this->data[$stat->year()][$stat->month()] = $stat;
27 27
     }
28 28
 
29
-    public function data(){
29
+    public function data() {
30 30
         return $this->data;
31 31
     }
32 32
 
33
-    public function years(){
33
+    public function years() {
34 34
         return array_keys($this->data);
35 35
     }
36 36
 
Please login to merge, or discard this patch.
Application/Flight/ViewModel/Statistic.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,11 +44,11 @@
 block discarded – undo
44 44
         return $this->number;
45 45
     }
46 46
 
47
-    public function year(){
47
+    public function year() {
48 48
         return $this->year;
49 49
     }
50 50
 
51
-    public function month(){
51
+    public function month() {
52 52
         return $this->month;
53 53
     }
54 54
 
Please login to merge, or discard this patch.
Http/Web/Controller/StatisticalGraphController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
         $graphByTypeAndYear->type = [];
137 137
         foreach (fetchBbcFlightTypes() as $flightType) {
138 138
 
139
-            if (!in_array($flightType->numero, [1, 2, 3,4, 6])) {
139
+            if (!in_array($flightType->numero, [1, 2, 3, 4, 6])) {
140 140
                 continue;
141 141
             }
142 142
 
Please login to merge, or discard this patch.
class/YearGraphicalData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
         $result = [$this->year];
70 70
 
71 71
         foreach ($this->graphData as $typeId => $data) {
72
-            if (!in_array($typeId, [1, 2, 3,4, 6])) {
72
+            if (!in_array($typeId, [1, 2, 3, 4, 6])) {
73 73
                 continue;
74 74
             }
75 75
 
Please login to merge, or discard this patch.
core/triggers/interface_50001_modFlightLog_mailOnIncident.class.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  */
17 17
 
18 18
 
19
-require_once DOL_DOCUMENT_ROOT.'/core/triggers/dolibarrtriggers.class.php';
19
+require_once DOL_DOCUMENT_ROOT . '/core/triggers/dolibarrtriggers.class.php';
20 20
 dol_include_once('/flightlog/class/bbcvols.class.php');
21 21
 dol_include_once('/core/class/CMailFile.class.php');
22 22
 
@@ -78,23 +78,23 @@  discard block
 block discarded – undo
78 78
 	 */
79 79
 	public function runTrigger($action, $object, User $user, Translate $langs, Conf $conf)
80 80
 	{
81
-        if (empty($conf->flightlog->enabled) || empty($conf->workflow->enabled)){
81
+        if (empty($conf->flightlog->enabled) || empty($conf->workflow->enabled)) {
82 82
             return 0;
83 83
         }
84 84
 
85
-        if(empty($conf->global->WORKFLOW_BBC_FLIGHTLOG_SEND_MAIL_ON_INCIDENT)){
85
+        if (empty($conf->global->WORKFLOW_BBC_FLIGHTLOG_SEND_MAIL_ON_INCIDENT)) {
86 86
             return 0;
87 87
         }
88 88
 
89
-        if($action !== 'BBC_FLIGHT_LOG_ADD_FLIGHT'){
89
+        if ($action !== 'BBC_FLIGHT_LOG_ADD_FLIGHT') {
90 90
             return 0;
91 91
         }
92 92
 
93
-        if(!$object->hasIncidents() && !$object->hasComment()){
93
+        if (!$object->hasIncidents() && !$object->hasComment()) {
94 94
             return 0;
95 95
         }
96 96
 
97
-        if(!empty($conf->global->MAIN_DISABLE_ALL_MAILS)){
97
+        if (!empty($conf->global->MAIN_DISABLE_ALL_MAILS)) {
98 98
             return 0;
99 99
         }
100 100
 
@@ -102,11 +102,11 @@  discard block
 block discarded – undo
102 102
         $message .= sprintf("<p>Vous recevez cet e-mail car un vol a été encodé avec un incident/ une remarque sur le ballon : %s dont vous êtes titulaire ou co-titulaire.</p>", $object->getBalloon()->immat);
103 103
         $message .= sprintf("<p><b>Vol id :</b> %d</p>", $object->getId());
104 104
         $message .= sprintf("<p><b>Réalisé par :</b> %s </p>", $object->getPilot()->getFullName($langs));
105
-        if($object->hasComment()){
105
+        if ($object->hasComment()) {
106 106
             $message .= sprintf("<p><b>Commentaire :</b> %s </p>", $object->getComment());
107 107
         }
108 108
 
109
-        if($object->hasIncidents()){
109
+        if ($object->hasIncidents()) {
110 110
             $message .= sprintf("<p><b>Incident :</b> %s </p>", $object->getIncident());
111 111
         }
112 112
 
@@ -118,18 +118,18 @@  discard block
 block discarded – undo
118 118
 
119 119
         $responsable = new User($user->db);
120 120
         $res = $responsable->fetch($object->getBalloon()->fk_responsable);
121
-        if($res > 0){
121
+        if ($res > 0) {
122 122
             $to[] = $responsable->email;
123 123
         }
124 124
 
125 125
 
126 126
         $backup = new User($user->db);
127 127
         $res = $backup->fetch($object->getBalloon()->fk_co_responsable);
128
-        if($res > 0){
128
+        if ($res > 0) {
129 129
             $to[] = $backup->email;
130 130
         }
131 131
 
132
-        if(empty($to)){
132
+        if (empty($to)) {
133 133
             return 0;
134 134
         }
135 135
 
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
         );
150 150
 
151 151
 
152
-        if (! $mailfile->sendfile())
152
+        if (!$mailfile->sendfile())
153 153
         {
154 154
             dol_syslog("Error while sending mail in flight log module : incident", LOG_ERR);
155 155
         }
Please login to merge, or discard this patch.
Http/Web/Form/DamageCreationForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         return $obj;
46 46
     }
47 47
 
48
-    private function addAmount(){
48
+    private function addAmount() {
49 49
         $field = new Number('amount');
50 50
         $field->required();
51 51
         $field->setStep(0.01);
Please login to merge, or discard this patch.
Http/Web/templates/flight_damage/form.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     <?php echo $renderer->render($form->getElement('flight_id')); ?>
25 25
     <?php echo $renderer->render($form->getElement('token')); ?>
26 26
 
27
-    <?php if($form->has('amount')): ?>
27
+    <?php if ($form->has('amount')): ?>
28 28
         <section class="form-section">
29 29
             <h1 class="form-section-title"><?php echo $langs->trans('Ajout de dégâts'); ?></h1>
30 30
             <table class="border" width="50%">
Please login to merge, or discard this patch.
Http/Web/templates/flight_damage/view.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -16,21 +16,21 @@
 block discarded – undo
16 16
         <td colspan="2">&nbsp;</td>
17 17
     </tr>
18 18
     <?php $total = 0; ?>
19
-    <?php foreach($damages as $currentDamage):?>
19
+    <?php foreach ($damages as $currentDamage):?>
20 20
         <?php $total += $currentDamage->getAmount(); ?>
21 21
         <tr>
22
-            <td><?php echo $currentDamage->getAuthorName();?></td>
23
-            <td><?php echo $currentDamage->getLabel();?></td>
24
-            <td><?php echo $currentDamage->getAmount();?>€</td>
22
+            <td><?php echo $currentDamage->getAuthorName(); ?></td>
23
+            <td><?php echo $currentDamage->getLabel(); ?></td>
24
+            <td><?php echo $currentDamage->getAmount(); ?>€</td>
25 25
             <td>
26
-                <?php if($currentDamage->isInvoiced()): ?>
26
+                <?php if ($currentDamage->isInvoiced()): ?>
27 27
                     <i class="fas fa-check"></i>
28 28
                 <?php else: ?>
29 29
                     <i class="fas fa-times"></i>
30 30
                 <?php endif; ?>
31 31
             </td>
32 32
             <td>
33
-                <a href="<?php print sprintf('%s/flightlog/index.php?r=get_one_damage&id=%s', DOL_URL_ROOT, $currentDamage->getId());?>"><i class="fas fa-link"></i></a>
33
+                <a href="<?php print sprintf('%s/flightlog/index.php?r=get_one_damage&id=%s', DOL_URL_ROOT, $currentDamage->getId()); ?>"><i class="fas fa-link"></i></a>
34 34
             </td>
35 35
         </tr>
36 36
     <?php endforeach; ?>
Please login to merge, or discard this patch.