Skip to content

Commit 1d46936

Browse files
committed
add spaces between parameters in method declaration (readability)
1 parent f3b2b8e commit 1d46936

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google-play.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ protected function getRegVal($regEx) {
1818
else return null;
1919
}
2020

21-
public function parseApplication($packageName,$lang='en_US',$loc='US') {
21+
public function parseApplication($packageName, $lang='en_US', $loc='US') {
2222
$link="https://play.google.com/store/apps/details?id=".$packageName."&hl=$lang&gl=$loc";
2323
if ( ! $this->input = @file_get_contents($link) ) {
2424
return ['success'=>0,'message'=>'Google returned: '.$http_response_header[0]];
@@ -110,7 +110,7 @@ public function parse($link=null) {
110110
return $values;
111111
}
112112

113-
public function parsePerms($packageName,$lang='en') {
113+
public function parsePerms($packageName, $lang='en') {
114114
$opts = ['http' => array(
115115
'method' => 'POST',
116116
'header' => 'Content-type: application/x-www-form-urlencoded;charset=utf-8'

0 commit comments

Comments
 (0)