Browse Source

whitespace

pull/64/head
Aaron Parecki 6 years ago
parent
commit
b995a1d3ee
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      lib/XRay/Formats/Twitter.php

+ 5
- 5
lib/XRay/Formats/Twitter.php View File

@ -30,7 +30,7 @@ class Twitter extends Format {
} }
$twitter = new \Twitter($creds['twitter_api_key'], $creds['twitter_api_secret'], $creds['twitter_access_token'], $creds['twitter_access_token_secret']); $twitter = new \Twitter($creds['twitter_api_key'], $creds['twitter_api_secret'], $creds['twitter_access_token'], $creds['twitter_access_token_secret']);
try {
try {
$tweet = $twitter->request('statuses/show/'.$tweet_id, 'GET', ['tweet_mode'=>'extended']); $tweet = $twitter->request('statuses/show/'.$tweet_id, 'GET', ['tweet_mode'=>'extended']);
} catch(\TwitterException $e) { } catch(\TwitterException $e) {
return [ return [
@ -119,7 +119,7 @@ class Twitter extends Format {
} }
} }
// Don't include the RT'd photo or video in the main object.
// Don't include the RT'd photo or video in the main object.
// They get included in the reposted object instead. // They get included in the reposted object instead.
if(!property_exists($tweet, 'retweeted_status')) { if(!property_exists($tweet, 'retweeted_status')) {
// Photos and Videos // Photos and Videos
@ -233,8 +233,8 @@ class Twitter extends Format {
} }
private static function expandTwitterObjectURLs($text, $object, $key) { private static function expandTwitterObjectURLs($text, $object, $key) {
if(property_exists($object, 'entities')
&& property_exists($object->entities, $key)
if(property_exists($object, 'entities')
&& property_exists($object->entities, $key)
&& property_exists($object->entities->{$key}, 'urls')) { && property_exists($object->entities->{$key}, 'urls')) {
foreach($object->entities->{$key}->urls as $url) { foreach($object->entities->{$key}->urls as $url) {
$text = str_replace($url->url, $url->expanded_url, $text); $text = str_replace($url->url, $url->expanded_url, $text);
@ -254,7 +254,7 @@ class Twitter extends Format {
$n = 0; $n = 0;
for($i = 0; $i < strlen($s); $i++) // iterate from first to last char of $s for($i = 0; $i < strlen($s); $i++) // iterate from first to last char of $s
{ {
$c = ord($s[$i]); // put current ASCII of char into $c
$c = ord($s[$i]); // put current ASCII of char into $c
if ($c>=48 && $c<=57) { $c=bcsub($c,48); } if ($c>=48 && $c<=57) { $c=bcsub($c,48); }
else if ($c>=65 && $c<=72) { $c=bcsub($c,55); } else if ($c>=65 && $c<=72) { $c=bcsub($c,55); }
else if ($c==73 || $c==108) { $c=1; } // typo capital I, lowercase l to 1 else if ($c==73 || $c==108) { $c=1; } // typo capital I, lowercase l to 1

Loading…
Cancel
Save