@@ -3,14 +3,17 @@ |
||
| 3 | 3 | interface CountryURLProviderInterface |
| 4 | 4 | { |
| 5 | 5 | /** |
| 6 | + * @return boolean |
|
| 6 | 7 | */ |
| 7 | 8 | public function hasCountrySegment($url = ''); |
| 8 | 9 | |
| 9 | 10 | /** |
| 11 | + * @return string |
|
| 10 | 12 | */ |
| 11 | 13 | public function replaceCountryCodeInUrl($countryCode, $url = ''); |
| 12 | 14 | |
| 13 | 15 | /** |
| 16 | + * @return string |
|
| 14 | 17 | */ |
| 15 | 18 | public function addCountryCodeToUrl($countryCode, $url = ''); |
| 16 | 19 | } |