Completed
Push — feature/number_enhancement ( b65f30 )
by Laurent
01:38
created
Infrastructure/Common/Routes/RouteManager.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
      *
39 39
      * @throws \Exception
40 40
      */
41
-    public function add(Route $route){
42
-        if(isset($this->routes[$route->getName()])){
41
+    public function add(Route $route) {
42
+        if (isset($this->routes[$route->getName()])) {
43 43
             throw new \Exception('Route exists');
44 44
         }
45 45
 
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @throws \Exception
53 53
      */
54
-    public function load(array $routes){
55
-        foreach($routes as $currentRoute){
54
+    public function load(array $routes) {
55
+        foreach ($routes as $currentRoute) {
56 56
             $this->add($currentRoute);
57 57
         }
58 58
     }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      */
63 63
     public function loadGuards($routesGuards)
64 64
     {
65
-        foreach($routesGuards as $guard){
65
+        foreach ($routesGuards as $guard) {
66 66
             $this->guards[$guard->getRouteName()] = $guard;
67 67
         }
68 68
     }
@@ -73,8 +73,8 @@  discard block
 block discarded – undo
73 73
      * @param $routeName
74 74
      * @return bool
75 75
      */
76
-    public function isAuthorized(User $user, $routeName){
77
-        if(!isset($this->guards[$routeName])){
76
+    public function isAuthorized(User $user, $routeName) {
77
+        if (!isset($this->guards[$routeName])) {
78 78
             return true;
79 79
         }
80 80
 
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
      */
93 93
     public function __invoke($name, User $user)
94 94
     {
95
-        if(!isset($this->routes[$name])){
95
+        if (!isset($this->routes[$name])) {
96 96
             throw new \Exception('Route not found');
97 97
         }
98 98
 
99
-        if(!$this->isAuthorized($user, $name)){
99
+        if (!$this->isAuthorized($user, $name)) {
100 100
             throw new \Exception('Action not allowed');
101 101
         }
102 102
 
Please login to merge, or discard this patch.
class/actions_flightlog.class.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,8 +58,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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'] = [
Please login to merge, or discard this patch.
damage/tpl/linkedobjectblock.tpl.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@
 block discarded – undo
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>
Please login to merge, or discard this patch.
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.
class/flight/FlightTypeCount.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.