Skip to content

Commit

Permalink
Merge pull request #26 from designmynight/skipsAuthorization
Browse files Browse the repository at this point in the history
fix: for designmynight/dmn#35679 fix issue with missing function
  • Loading branch information
samc05 authored Sep 13, 2019
2 parents b174672 + 56968fb commit 5cac268
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Passport/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,14 @@ public function firstParty()
{
return $this->personal_access_client || $this->password_client;
}

/**
* Determine if the client should skip the authorization prompt.
*
* @return bool
*/
public function skipsAuthorization()
{
return false;
}
}

0 comments on commit 5cac268

Please sign in to comment.