Skip to content

Commit a5d164f

Browse files
committed
All php variables are the same.
There is no difference between Array and String in PHP. All use $ as prefix.
1 parent e31a046 commit a5d164f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/snapchat.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,9 +708,9 @@ public function getMedia($id) {
708708
//fail and would've returned "FALSE".
709709
if (parent::isCompressed(substr($result, 0, 2))) {
710710
//Uncompress
711-
@result_array = parent::unCompress($result);
711+
$result_array = parent::unCompress($result);
712712
//Return Media and Overlay
713-
return @result_array;
713+
return $result_array;
714714
}
715715
}
716716

0 commit comments

Comments
 (0)