Skip to content

Commit 35b919f

Browse files
committed
Update v4.4.20250528
1 parent 8892862 commit 35b919f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Abfall_APP/module.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -912,10 +912,10 @@ private function ServiceRequest(array &$io, string $ending, string $base, array
912912
return $body;
913913
}
914914

915-
private function SearchStreet(string $search)
915+
private function SearchStreet(string $search)
916916
{
917917
$this->SendDebug(__FUNCTION__, $search);
918-
if(empty($search) || strlen($search) < 2) {
918+
if (empty($search) || strlen($search) < 2) {
919919
return;
920920
}
921921
// Get io array
@@ -1104,8 +1104,8 @@ private function GetCountyDistricts(array &$io, string $region = 'landkreis')
11041104
'name' => $data[1],
11051105
'bundesland_id' => isset($data[5]['set_id_bundesland']) ? $data[5]['set_id_bundesland'] : null,
11061106
'landkreis_id' => isset($data[5]['set_id_landkreis']) ? $data[5]['set_id_landkreis'] : null,
1107-
"kommune_id" => isset($data[5]["set_id_kommune"]) ? $data[5]["set_id_kommune"] : null,
1108-
"next_step" => isset($data[5]["next_step"]) ? $data[5]["next_step"] : null,
1107+
'kommune_id' => isset($data[5]['set_id_kommune']) ? $data[5]['set_id_kommune'] : null,
1108+
'next_step' => isset($data[5]['next_step']) ? $data[5]['next_step'] : null,
11091109
];
11101110
}
11111111

@@ -1152,7 +1152,7 @@ private function GetCommunes(array &$io, string $region = 'kommune')
11521152
'bundesland_id' => isset($data[5]['set_id_bundesland']) ? $data[5]['set_id_bundesland'] : null,
11531153
'landkreis_id' => isset($data[5]['set_id_landkreis']) ? $data[5]['set_id_landkreis'] : null,
11541154
'kommune_id' => isset($data[5]['set_id_kommune']) ? $data[5]['set_id_kommune'] : null,
1155-
"next_step" => $data[3],
1155+
'next_step' => $data[3],
11561156
'finished' => false
11571157
];
11581158
if (isset($data[5]['step_follow_data']['step_akt']) && $data[5]['step_follow_data']['step_akt'] === 'strasse') {
@@ -1259,7 +1259,7 @@ private function GetStreets(array &$io, string $search = null)
12591259
];
12601260
}
12611261
// Empty means we have to search a street ...
1262-
if(empty($io['strasse'])) {
1262+
if (empty($io['strasse'])) {
12631263
return false;
12641264
}
12651265
return true;

0 commit comments

Comments
 (0)