@@ -58,8 +58,8 @@ discard block |
||
58 | 58 | * |
59 | 59 | * @return int |
60 | 60 | */ |
61 | - public function showLinkedObjectBlock(array $params = [], $object){ |
|
62 | - if(!isset($object->linkedObjectsIds) || !isset($object->linkedObjectsIds['flightlog_damage'])){ |
|
61 | + public function showLinkedObjectBlock(array $params = [], $object) { |
|
62 | + if (!isset($object->linkedObjectsIds) || !isset($object->linkedObjectsIds['flightlog_damage'])) { |
|
63 | 63 | return 0; |
64 | 64 | } |
65 | 65 | |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | dol_include_once('/flightlog/flightlog.inc.php'); |
70 | 70 | $queryRepository = new \FlightLog\Infrastructure\Damage\Query\Repository\GetDamageQueryRepository($db); |
71 | 71 | |
72 | - foreach($object->linkedObjectsIds['flightlog_damage'] as $damageId){ |
|
72 | + foreach ($object->linkedObjectsIds['flightlog_damage'] as $damageId) { |
|
73 | 73 | try { |
74 | 74 | $object->linkedObjects['flightlog_damage'][$damageId] = $queryRepository->query($damageId); |
75 | 75 | } catch (Exception $e) { |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | return $sql; |
100 | 100 | } |
101 | 101 | |
102 | - public function completeListOfReferent(){ |
|
102 | + public function completeListOfReferent() { |
|
103 | 103 | dol_include_once('/flightlog/class/bbcvols.class.php'); |
104 | 104 | |
105 | 105 | $this->results['flightlog'] = [ |
@@ -45,13 +45,13 @@ |
||
45 | 45 | $var = !$var; |
46 | 46 | $trclass = ($var ? 'pair' : 'impair'); |
47 | 47 | |
48 | - if(!$user->rights->flightlog->vol->financial && $user->rowid != $damage->getAuthorId()){ |
|
48 | + if (!$user->rights->flightlog->vol->financial && $user->rowid != $damage->getAuthorId()) { |
|
49 | 49 | continue; |
50 | 50 | } |
51 | 51 | ?> |
52 | 52 | <tr <?php echo $GLOBALS['bc'][$var]; ?> > |
53 | 53 | <td><?php echo $langs->trans("Dégâts"); ?></td> |
54 | - <td><a href="<?php echo sprintf(DOL_URL_ROOT.'/flightlog/index.php?id=%s&r=%s', $damage->getId(), 'get_one_damage');?>"><?php echo $damage->getId()?></a></td> |
|
54 | + <td><a href="<?php echo sprintf(DOL_URL_ROOT . '/flightlog/index.php?id=%s&r=%s', $damage->getId(), 'get_one_damage'); ?>"><?php echo $damage->getId()?></a></td> |
|
55 | 55 | <td align="center"><?php echo $damage->getAuthorName(); ?></td> |
56 | 56 | <td align="center"></td> |
57 | 57 | <td align="right"><?echo price($damage->getAmount()) ?>€</td> |
@@ -64,13 +64,13 @@ |
||
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 | } |
@@ -16,9 +16,9 @@ discard block |
||
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 |
||
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 |
@@ -44,11 +44,11 @@ |
||
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 |
@@ -136,7 +136,7 @@ |
||
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 |
@@ -69,7 +69,7 @@ |
||
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 |
@@ -27,7 +27,7 @@ |
||
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) |
@@ -24,7 +24,7 @@ |
||
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%"> |