File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -423,9 +423,9 @@ public function oauth_authorize($force_login = NULL, $screen_name = NULL)
423
423
public function oauth2_token ()
424
424
{
425
425
if ($ this ->_use_curl ) {
426
- return $ this ->_oauth2_tokenCurl ();
426
+ return $ this ->_oauth2TokenCurl ();
427
427
}
428
- return $ this ->_oauth2_tokenNoCurl ();
428
+ return $ this ->_oauth2TokenNoCurl ();
429
429
}
430
430
431
431
/**
@@ -434,7 +434,7 @@ public function oauth2_token()
434
434
* @return string The OAuth bearer token
435
435
*/
436
436
437
- protected function _oauth2_tokenCurl ()
437
+ protected function _oauth2TokenCurl ()
438
438
{
439
439
if (self ::$ _oauth_consumer_key === null ) {
440
440
throw new \Exception ('To obtain a bearer token, the consumer key must be set. ' );
@@ -498,7 +498,7 @@ protected function _oauth2_tokenCurl()
498
498
* @return string The OAuth bearer token
499
499
*/
500
500
501
- protected function _oauth2_tokenNoCurl ()
501
+ protected function _oauth2TokenNoCurl ()
502
502
{
503
503
if (self ::$ _oauth_consumer_key == null ) {
504
504
throw new \Exception ('To obtain a bearer token, the consumer key must be set. ' );
You can’t perform that action at this time.
0 commit comments