@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | foreach ($adjacent as $adjHash) { |
119 | 119 | if (is_array($this->spatial_idx)) { |
120 | 120 | foreach ($this->spatial_idx as $_geohash => $_docIds) { |
121 | - if (strpos($_geohash, (string)$adjHash) !== false) { |
|
121 | + if (strpos($_geohash, ( string ) $adjHash) !== false) { |
|
122 | 122 | // if $adjHash similar to geohash |
123 | 123 | $docIds = array_merge($docIds, $_docIds); |
124 | 124 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $point |
145 | 145 | ] |
146 | 146 | ); |
147 | - $media [] = ['id' => $id, 'distance' => (int)($line->greatCircleLength()), |
|
147 | + $media [] = ['id' => $id, 'distance' => ( int ) ($line->greatCircleLength()), |
|
148 | 148 | 'lat' => $point->y(), 'lon' => $point->x()]; |
149 | 149 | } |
150 | 150 | } elseif (auth_quickaclcheck($id) >= /*AUTH_READ*/ 1) { |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | $point |
157 | 157 | ] |
158 | 158 | ); |
159 | - $pages [] = ['id' => $id, 'distance' => (int)($line->greatCircleLength()), |
|
159 | + $pages [] = ['id' => $id, 'distance' => ( int ) ($line->greatCircleLength()), |
|
160 | 160 | 'description' => p_get_metadata($id, 'description')['abstract'], |
161 | 161 | 'lat' => $geotags ['lat'], 'lon' => $geotags ['lon']]; |
162 | 162 | } |
@@ -75,7 +75,7 @@ |
||
75 | 75 | * |
76 | 76 | * @see DokuWiki_Syntax_Plugin::handle() |
77 | 77 | */ |
78 | - final public function handle($match, $state, $pos, Doku_Handler $handler): bool|array |
|
78 | + final public function handle($match, $state, $pos, Doku_Handler $handler): bool | array |
|
79 | 79 | { |
80 | 80 | $data = []; |
81 | 81 | $data [0] = trim(substr($match, strlen('{{findnearby>'), -2)); |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | if ((!str_ends_with(strtolower($imgId), '.jpg')) && |
215 | 215 | (!str_ends_with(strtolower($imgId), '.jpeg')) |
216 | 216 | ) { |
217 | - Logger::debug("indexImage:: ".$imgId." is not a supported image file."); |
|
217 | + Logger::debug("indexImage:: " . $imgId . " is not a supported image file."); |
|
218 | 218 | return false; |
219 | 219 | } |
220 | 220 | |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | * @return Point|false |
237 | 237 | * @throws Exception |
238 | 238 | */ |
239 | - final public function getCoordsFromExif(string $id): Point|false |
|
239 | + final public function getCoordsFromExif(string $id): Point | false |
|
240 | 240 | { |
241 | 241 | $exif = exif_read_data(mediaFN($id), 0, true); |
242 | 242 | if (empty($exif ['GPS'])) { |
@@ -287,11 +287,11 @@ discard block |
||
287 | 287 | { |
288 | 288 | // rational64u |
289 | 289 | $nums = explode('/', $param); |
290 | - if ((int)$nums[1] > 0) { |
|
291 | - return (float)$nums[0] / (int)$nums[1]; |
|
290 | + if (( int ) $nums[1] > 0) { |
|
291 | + return ( float ) $nums[0] / ( int ) $nums[1]; |
|
292 | 292 | } |
293 | 293 | |
294 | - return (float)$nums[0]; |
|
294 | + return ( float ) $nums[0]; |
|
295 | 295 | } |
296 | 296 | |
297 | 297 | /** |
@@ -248,11 +248,11 @@ discard block |
||
248 | 248 | */ |
249 | 249 | private function printHTML(array $searchresults, bool $showMedia = true): void |
250 | 250 | { |
251 | - $pages = (array)($searchresults ['pages']); |
|
252 | - $media = (array)$searchresults ['media']; |
|
253 | - $lat = (float)$searchresults ['lat']; |
|
254 | - $lon = (float)$searchresults ['lon']; |
|
255 | - $geohash = (string)$searchresults ['geohash']; |
|
251 | + $pages = ( array ) ($searchresults ['pages']); |
|
252 | + $media = ( array ) $searchresults ['media']; |
|
253 | + $lat = ( float ) $searchresults ['lat']; |
|
254 | + $lon = ( float ) $searchresults ['lon']; |
|
255 | + $geohash = ( string ) $searchresults ['geohash']; |
|
256 | 256 | |
257 | 257 | if (isset($searchresults ['error'])) { |
258 | 258 | echo '<div class="level1"><p>' . hsc($searchresults ['error']) . '</p></div>'; |
@@ -337,7 +337,7 @@ discard block |
||
337 | 337 | // check the list of mimetypes |
338 | 338 | // if it's a supported type call appropriate index function |
339 | 339 | if (str_contains($event->data [3], 'image/jpeg')) { |
340 | - Logger::debug("handleMediaUploaded::got ".$event->data[3]." upload"); |
|
340 | + Logger::debug("handleMediaUploaded::got " . $event->data[3] . " upload"); |
|
341 | 341 | $indexer = plugin_load('helper', 'spatialhelper_index'); |
342 | 342 | if ($indexer !== null) { |
343 | 343 | $indexer->indexImage($event->data [2]); |