@@ -89,6 +89,10 @@ discard block |
||
89 | 89 | 'y' => 'Yagi At QTH'); |
90 | 90 | |
91 | 91 | |
92 | + /** |
|
93 | + * @param integer $n |
|
94 | + * @param integer $s |
|
95 | + */ |
|
92 | 96 | private function urshift($n, $s) { |
93 | 97 | return ($n >= 0) ? ($n >> $s) : |
94 | 98 | (($n & 0x7fffffff) >> $s) | |
@@ -483,6 +487,9 @@ discard block |
||
483 | 487 | socket_close($this->socket); |
484 | 488 | } |
485 | 489 | |
490 | + /** |
|
491 | + * @param string $data |
|
492 | + */ |
|
486 | 493 | public function send($data) { |
487 | 494 | global $globalDebug; |
488 | 495 | if ($this->connected === false) $this->connect(); |
@@ -52,6 +52,10 @@ discard block |
||
52 | 52 | $this->openedFiles = []; |
53 | 53 | } |
54 | 54 | |
55 | + /** |
|
56 | + * @param double $row |
|
57 | + * @param double $column |
|
58 | + */ |
|
55 | 59 | private function getElevationAtPosition($fileName, $row, $column) { |
56 | 60 | if (!array_key_exists($fileName, $this->openedFiles)) { |
57 | 61 | if (!file_exists($this->htgFilesDestination . DIRECTORY_SEPARATOR . $fileName)) { |
@@ -85,7 +89,7 @@ discard block |
||
85 | 89 | * @param float $lon |
86 | 90 | * @param null $fName |
87 | 91 | * |
88 | - * @return mixed |
|
92 | + * @return double |
|
89 | 93 | * @throws \Exception |
90 | 94 | */ |
91 | 95 | public function getElevation($lat, $lon, &$fName = null) { |
@@ -142,6 +146,9 @@ discard block |
||
142 | 146 | return $zN; |
143 | 147 | } |
144 | 148 | |
149 | + /** |
|
150 | + * @param integer $numPrefix |
|
151 | + */ |
|
145 | 152 | private function getDeg($deg, $numPrefix) { |
146 | 153 | $deg = abs($deg); |
147 | 154 | $d = floor($deg); // round degrees |
@@ -156,6 +163,9 @@ discard block |
||
156 | 163 | return $d; |
157 | 164 | } |
158 | 165 | |
166 | + /** |
|
167 | + * @param double $deg |
|
168 | + */ |
|
159 | 169 | private function getSec($deg) { |
160 | 170 | $deg = abs($deg); |
161 | 171 | $sec = round($deg * 3600, 4); |
@@ -90,6 +90,10 @@ discard block |
||
90 | 90 | return strlen($headerLine); // Needed by curl |
91 | 91 | } |
92 | 92 | |
93 | + /** |
|
94 | + * @param string $url |
|
95 | + * @param string $file |
|
96 | + */ |
|
93 | 97 | public static function download($url, $file, $referer = '') { |
94 | 98 | global $globalDebug; |
95 | 99 | $fp = fopen($file, 'w'); |
@@ -106,6 +110,9 @@ discard block |
||
106 | 110 | fclose($fp); |
107 | 111 | } |
108 | 112 | |
113 | + /** |
|
114 | + * @param string $in_file |
|
115 | + */ |
|
109 | 116 | public static function gunzip($in_file,$out_file_name = '') { |
110 | 117 | //echo $in_file.' -> '.$out_file_name."\n"; |
111 | 118 | $buffer_size = 4096; // read 4kb at a time |
@@ -211,7 +218,7 @@ discard block |
||
211 | 218 | * Check is distance realistic |
212 | 219 | * @param int $timeDifference the time between the reception of both messages |
213 | 220 | * @param float $distance distance covered |
214 | - * @return whether distance is realistic |
|
221 | + * @return boolean distance is realistic |
|
215 | 222 | */ |
216 | 223 | public function withinThreshold ($timeDifference, $distance) { |
217 | 224 | $x = abs($timeDifference); |
@@ -234,6 +241,9 @@ discard block |
||
234 | 241 | } |
235 | 242 | |
236 | 243 | |
244 | + /** |
|
245 | + * @param string $latlong |
|
246 | + */ |
|
237 | 247 | public function convertDec($dms,$latlong) { |
238 | 248 | if ($latlong == 'latitude') { |
239 | 249 | $deg = substr($dms, 0, 2); |
@@ -245,6 +255,9 @@ discard block |
||
245 | 255 | return $deg+(($min*60)/3600); |
246 | 256 | } |
247 | 257 | |
258 | + /** |
|
259 | + * @param string $latlong |
|
260 | + */ |
|
248 | 261 | public function convertDM($coord,$latlong) { |
249 | 262 | if ($latlong == 'latitude') { |
250 | 263 | if ($coord < 0) $NSEW = 'S'; |
@@ -382,7 +395,7 @@ discard block |
||
382 | 395 | /** |
383 | 396 | * Returns list of available locales |
384 | 397 | * |
385 | - * @return array |
|
398 | + * @return string[] |
|
386 | 399 | */ |
387 | 400 | public function listLocaleDir() |
388 | 401 | { |
@@ -91,6 +91,10 @@ |
||
91 | 91 | $this->rlatres = (($this->height - 1) / 180.0); |
92 | 92 | } |
93 | 93 | |
94 | + /** |
|
95 | + * @param integer $ix |
|
96 | + * @param integer $iy |
|
97 | + */ |
|
94 | 98 | private function _rawval($ix,$iy) { |
95 | 99 | if (($iy < 0)) { |
96 | 100 | $iy = -$iy; |
@@ -6,6 +6,9 @@ discard block |
||
6 | 6 | public $dbs = array(); |
7 | 7 | public $latest_schema = 45; |
8 | 8 | |
9 | + /** |
|
10 | + * @param string $dbname |
|
11 | + */ |
|
9 | 12 | public function __construct($dbc = null,$dbname = null,$user = null,$pass = null) { |
10 | 13 | global $globalDBdriver, $globalNoDB; |
11 | 14 | if (isset($globalNoDB) && $globalNoDB === TRUE) { |
@@ -141,6 +144,9 @@ discard block |
||
141 | 144 | return true; |
142 | 145 | } |
143 | 146 | |
147 | + /** |
|
148 | + * @param string $table |
|
149 | + */ |
|
144 | 150 | public function tableExists($table) |
145 | 151 | { |
146 | 152 | global $globalDBdriver, $globalDBname; |
@@ -190,6 +196,11 @@ discard block |
||
190 | 196 | /* |
191 | 197 | * Check if index exist |
192 | 198 | */ |
199 | + |
|
200 | + /** |
|
201 | + * @param string $table |
|
202 | + * @param string $index |
|
203 | + */ |
|
193 | 204 | public function indexExists($table,$index) |
194 | 205 | { |
195 | 206 | global $globalDBdriver, $globalDBname; |
@@ -232,6 +243,10 @@ discard block |
||
232 | 243 | return $columns; |
233 | 244 | } |
234 | 245 | |
246 | + /** |
|
247 | + * @param string $table |
|
248 | + * @param string $column |
|
249 | + */ |
|
235 | 250 | public function getColumnType($table,$column) { |
236 | 251 | $select = $this->db->query('SELECT '.$column.' FROM '.$table); |
237 | 252 | $tomet = $select->getColumnMeta(0); |
@@ -242,6 +257,11 @@ discard block |
||
242 | 257 | * Check if a column name exist in a table |
243 | 258 | * @return Boolean column exist or not |
244 | 259 | */ |
260 | + |
|
261 | + /** |
|
262 | + * @param string $table |
|
263 | + * @param string $name |
|
264 | + */ |
|
245 | 265 | public function checkColumnName($table,$name) |
246 | 266 | { |
247 | 267 | global $globalDBdriver, $globalDBname; |