| 1 | <?php |
||
| 5 | class AppMarket |
||
| 6 | { |
||
| 7 | const ANDROID_SUBSTRING = '://play.google.com'; |
||
| 8 | const IOS_REGEX = '/https?:\/\/itunes\.apple\.com\/((?<country>[a-zA-Z]{2})\/)?.+\/id(?<id>\d+)/'; |
||
| 9 | const PLATFORM_ANDROID = 1; |
||
| 10 | const PLATFORM_IOS = 2; |
||
| 11 | |||
| 12 | public function fetchAppDetails($previewUrl) |
||
| 29 | |||
| 30 | private function mobileAppStore($previewUrl, $withCountry = false) |
||
| 54 | } |
||
| 55 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.