summaryrefslogtreecommitdiffstats
path: root/1.patch
blob: dd4d6771683d65eb7e0f7cdb4ee36b90785566b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
From 9b64ea49884ccc67eb00803ea8a8d20bdd71d696 Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Mon, 18 Nov 2019 14:26:48 +0100
Subject: [PATCH] fix phplint warnings

---
 lib/Horde/Service/Weather.php              | 6 +++---
 lib/Horde/Service/Weather/Parser/Metar.php | 8 ++++----
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/lib/Horde/Service/Weather.php b/lib/Horde/Service/Weather.php
index 0a9d44f..2a7c423 100644
--- a/lib/Horde/Service/Weather.php
+++ b/lib/Horde/Service/Weather.php
@@ -351,8 +351,8 @@ public static function convertTemperature($temperature, $from, $to)
             return $temperature;
         }
 
-        $from = strtolower($from{0});
-        $to   = strtolower($to{0});
+        $from = strtolower($from[0]);
+        $to   = strtolower($to[0]);
 
         $result = array(
             'f' => array(
@@ -368,4 +368,4 @@ public static function convertTemperature($temperature, $from, $to)
         return $result[$from][$to];
     }
 
-}
\ No newline at end of file
+}
diff --git a/lib/Horde/Service/Weather/Parser/Metar.php b/lib/Horde/Service/Weather/Parser/Metar.php
index 570f6c2..61bf73d 100644
--- a/lib/Horde/Service/Weather/Parser/Metar.php
+++ b/lib/Horde/Service/Weather/Parser/Metar.php
@@ -545,10 +545,10 @@ protected function _parse(array $data)
                             'presschng' => Horde_Service_Weather::convertPressure($result[2] / 10, 'hpa', $this->_unitMap[self::UNIT_KEY_PRESSURE]),
                             'description' => ($result[1] >= 0 && $result[1] <=3)
                                 ? Horde_Service_Weather_Translation::t('Rising')
-                                : ($result[1] == 4)
+                                : (($result[1] == 4)
                                     ? Horde_Service_Weather_Translation::t('Steady')
-                                    : ($result[1] > 4)
-                                        ? Horde_Service_Weather_Translation::t('Falling') : ''
+                                    : (($result[1] > 4)
+                                        ? Horde_Service_Weather_Translation::t('Falling') : ''))
                         );
                         unset($metarCode['3hpresstend']);
                         break;
@@ -637,4 +637,4 @@ protected function _getRemarks()
         );
     }
 
-}
\ No newline at end of file
+}