Continued:

- changed NULL -> null (was used at more places)
- converted CRLF -> LF

Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2018-05-10 23:00:12 +02:00
parent eaa307be58
commit d05a92370a
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78
5 changed files with 115 additions and 115 deletions

View file

@ -139,7 +139,7 @@ function blockem_prepare_body_content_filter(App $a, array &$hook_data)
} }
} }
function blockem_display_item(App $a, array &$b = NULL) { function blockem_display_item(App $a, array &$b = null) {
if (strstr($b['output']['body'],'id="blockem-wrap-')) { if (strstr($b['output']['body'],'id="blockem-wrap-')) {
$b['output']['thumb'] = $a->get_baseurl() . "/images/person-80.jpg"; $b['output']['thumb'] = $a->get_baseurl() . "/images/person-80.jpg";
} }

View file

@ -317,7 +317,7 @@ class CodebirdSN
* *
* @return string The OAuth authenticate URL * @return string The OAuth authenticate URL
*/ */
public function oauth_authenticate($force_login = NULL, $screen_name = NULL) public function oauth_authenticate($force_login = null, $screen_name = null)
{ {
if ($this->_oauth_token == null) { if ($this->_oauth_token == null) {
throw new \Exception('To get the authenticate URL, the OAuth token must be set.'); throw new \Exception('To get the authenticate URL, the OAuth token must be set.');
@ -337,7 +337,7 @@ class CodebirdSN
* *
* @return string The OAuth authorize URL * @return string The OAuth authorize URL
*/ */
public function oauth_authorize($force_login = NULL, $screen_name = NULL) public function oauth_authorize($force_login = null, $screen_name = null)
{ {
if ($this->_oauth_token == null) { if ($this->_oauth_token == null) {
throw new \Exception('To get the authorize URL, the OAuth token must be set.'); throw new \Exception('To get the authorize URL, the OAuth token must be set.');

View file

@ -38,7 +38,7 @@ class StatusNetOAuth extends TwitterOAuth
return $this->host . 'oauth/request_token'; return $this->host . 'oauth/request_token';
} }
function __construct($apipath, $consumer_key, $consumer_secret, $oauth_token = NULL, $oauth_token_secret = NULL) function __construct($apipath, $consumer_key, $consumer_secret, $oauth_token = null, $oauth_token_secret = null)
{ {
parent::__construct($consumer_key, $consumer_secret, $oauth_token, $oauth_token_secret); parent::__construct($consumer_key, $consumer_secret, $oauth_token, $oauth_token_secret);
$this->host = $apipath; $this->host = $apipath;
@ -56,7 +56,7 @@ class StatusNetOAuth extends TwitterOAuth
* *
* @return array|object API results * @return array|object API results
*/ */
function http($url, $method, $postfields = NULL) function http($url, $method, $postfields = null)
{ {
$this->http_info = []; $this->http_info = [];
$ci = curl_init(); $ci = curl_init();

View file

@ -76,14 +76,14 @@ class TwitterOAuth
/** /**
* construct TwitterOAuth object * construct TwitterOAuth object
*/ */
function __construct($consumer_key, $consumer_secret, $oauth_token = NULL, $oauth_token_secret = NULL) function __construct($consumer_key, $consumer_secret, $oauth_token = null, $oauth_token_secret = null)
{ {
$this->sha1_method = new OAuthSignatureMethod_HMAC_SHA1(); $this->sha1_method = new OAuthSignatureMethod_HMAC_SHA1();
$this->consumer = new OAuthConsumer($consumer_key, $consumer_secret); $this->consumer = new OAuthConsumer($consumer_key, $consumer_secret);
if (!empty($oauth_token) && !empty($oauth_token_secret)) { if (!empty($oauth_token) && !empty($oauth_token_secret)) {
$this->token = new OAuthConsumer($oauth_token, $oauth_token_secret); $this->token = new OAuthConsumer($oauth_token, $oauth_token_secret);
} else { } else {
$this->token = NULL; $this->token = null;
} }
} }
@ -92,7 +92,7 @@ class TwitterOAuth
* *
* @returns a key/value array containing oauth_token and oauth_token_secret * @returns a key/value array containing oauth_token and oauth_token_secret
*/ */
function getRequestToken($oauth_callback = NULL) function getRequestToken($oauth_callback = null)
{ {
$parameters = array(); $parameters = array();
if (!empty($oauth_callback)) { if (!empty($oauth_callback)) {
@ -224,7 +224,7 @@ class TwitterOAuth
* *
* @return API results * @return API results
*/ */
function http($url, $method, $postfields = NULL) function http($url, $method, $postfields = null)
{ {
$this->http_info = array(); $this->http_info = array();
$ci = curl_init(); $ci = curl_init();

View file

@ -53,13 +53,13 @@ class TumblrOAuth {
/** /**
* construct TumblrOAuth object * construct TumblrOAuth object
*/ */
function __construct($consumer_key, $consumer_secret, $oauth_token = NULL, $oauth_token_secret = NULL) { function __construct($consumer_key, $consumer_secret, $oauth_token = null, $oauth_token_secret = null) {
$this->sha1_method = new OAuthSignatureMethod_HMAC_SHA1(); $this->sha1_method = new OAuthSignatureMethod_HMAC_SHA1();
$this->consumer = new OAuthConsumer($consumer_key, $consumer_secret); $this->consumer = new OAuthConsumer($consumer_key, $consumer_secret);
if (!empty($oauth_token) && !empty($oauth_token_secret)) { if (!empty($oauth_token) && !empty($oauth_token_secret)) {
$this->token = new OAuthConsumer($oauth_token, $oauth_token_secret); $this->token = new OAuthConsumer($oauth_token, $oauth_token_secret);
} else { } else {
$this->token = NULL; $this->token = null;
} }
} }
@ -69,7 +69,7 @@ class TumblrOAuth {
* *
* @returns a key/value array containing oauth_token and oauth_token_secret * @returns a key/value array containing oauth_token and oauth_token_secret
*/ */
function getRequestToken($oauth_callback = NULL) { function getRequestToken($oauth_callback = null) {
$parameters = array(); $parameters = array();
if (!empty($oauth_callback)) { if (!empty($oauth_callback)) {
$parameters['oauth_callback'] = $oauth_callback; $parameters['oauth_callback'] = $oauth_callback;
@ -191,7 +191,7 @@ class TumblrOAuth {
* *
* @return API results * @return API results
*/ */
function http($url, $method, $postfields = NULL) { function http($url, $method, $postfields = null) {
$this->http_info = array(); $this->http_info = array();
$ci = curl_init(); $ci = curl_init();
/* Curl settings */ /* Curl settings */