Skip to content

Commit

Permalink
Add $stateless parameter to stateless method
Browse files Browse the repository at this point in the history
  • Loading branch information
DraperStudio committed Apr 21, 2016
1 parent 5285e59 commit 3c2253b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OAuth1/AbstractProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ protected function getToken()
*
* @return $this
*/
public function stateless()
public function stateless($stateless = true)
{
$this->stateless = true;
$this->stateless = $stateless;

return $this;
}
Expand Down

0 comments on commit 3c2253b

Please sign in to comment.