@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | { |
131 | 131 | $this->data->court_all = null; |
132 | 132 | if ($this->data->file_number && $this->data->court) { |
133 | - $this->data->court_all = $this->data->file_number . ', ' . $this->data->court; |
|
133 | + $this->data->court_all = $this->data->file_number.', '.$this->data->court; |
|
134 | 134 | } |
135 | 135 | } |
136 | 136 | |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | */ |
176 | 176 | public function setHouseNumber(string $cd, string $co, string $ca) |
177 | 177 | { |
178 | - $houseNumber = self::toNull(trim($cd . '/' . $co, '/')); |
|
178 | + $houseNumber = self::toNull(trim($cd.'/'.$co, '/')); |
|
179 | 179 | if ($houseNumber === null) { |
180 | 180 | $houseNumber = self::toNull($ca); |
181 | 181 | } |
@@ -13,8 +13,8 @@ discard block |
||
13 | 13 | class RequestProvider |
14 | 14 | { |
15 | 15 | private const BASE_URL = 'https://wwwinfo.mfcr.cz/cgi-bin/ares'; |
16 | - protected const ONE_IN = self::BASE_URL . '/darv_bas.cgi'; |
|
17 | - protected const MULTI_IN = self::BASE_URL . '/xar.cgi'; |
|
16 | + protected const ONE_IN = self::BASE_URL.'/darv_bas.cgi'; |
|
17 | + protected const MULTI_IN = self::BASE_URL.'/xar.cgi'; |
|
18 | 18 | |
19 | 19 | private RequestFactoryInterface $requestFactory; |
20 | 20 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | 'aktivni' => 'false', |
76 | 76 | ]; |
77 | 77 | |
78 | - return self::ONE_IN . '?' . http_build_query($parameters); |
|
78 | + return self::ONE_IN.'?'.http_build_query($parameters); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | $content .= "<Dotaz><Pomocne_ID>$key</Pomocne_ID><ICO>$in</ICO></Dotaz>"; |
111 | 111 | } |
112 | 112 | |
113 | - return $content . '</are:Ares_dotazy>'; |
|
113 | + return $content.'</are:Ares_dotazy>'; |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | } |