You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by li...@apache.org on 2010/07/20 02:44:24 UTC

svn commit: r965695 - /shindig/trunk/php/src/common/sample/BasicOAuthLookupService.php

Author: lindner
Date: Tue Jul 20 00:44:24 2010
New Revision: 965695

URL: http://svn.apache.org/viewvc?rev=965695&view=rev
Log:
SHINDIG-1387 | Signature of getSecurityToken in BasicOAuthLookupService does not match base class OAuthLookupService

Modified:
    shindig/trunk/php/src/common/sample/BasicOAuthLookupService.php

Modified: shindig/trunk/php/src/common/sample/BasicOAuthLookupService.php
URL: http://svn.apache.org/viewvc/shindig/trunk/php/src/common/sample/BasicOAuthLookupService.php?rev=965695&r1=965694&r2=965695&view=diff
==============================================================================
--- shindig/trunk/php/src/common/sample/BasicOAuthLookupService.php (original)
+++ shindig/trunk/php/src/common/sample/BasicOAuthLookupService.php Tue Jul 20 00:44:24 2010
@@ -24,7 +24,7 @@
  */
 class BasicOAuthLookupService extends OAuthLookupService {
 
-  public function getSecurityToken($oauthRequest, $appUrl, $userId) {
+  public function getSecurityToken($oauthRequest, $appUrl, $userId, $contentType) {
     return new OAuthSecurityToken($userId, $appUrl, $this->getAppId($appUrl), "samplecontainer");
   }