forked from blallo/rss-bridge
[TwitterBridge] Fix coding style
This commit is contained in:
parent
485b465a24
commit
c986ff9116
1 changed files with 3 additions and 3 deletions
|
@ -107,10 +107,10 @@ class TwitterBridge extends BridgeAbstract {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Skip protmoted tweets
|
// Skip protmoted tweets
|
||||||
$heading=$tweet->previousSibling();
|
$heading = $tweet->previousSibling();
|
||||||
if(!is_null($heading) &&
|
if(!is_null($heading) &&
|
||||||
$heading->getAttribute('class')==='promoted-tweet-heading'
|
$heading->getAttribute('class') === 'promoted-tweet-heading'
|
||||||
){
|
) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue