Skip to content

Commit

Permalink
fix: getSigninUrl is not static method (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
Linvery authored Sep 22, 2022
1 parent 3ae39bc commit aae072a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auth/Url.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static function getSignupUrl(bool $enablePassword, string $redirectUri, A
}
}

public function getSigninUrl(string $redirectUri, AuthConfig $authConfig): string
public static function getSigninUrl(string $redirectUri, AuthConfig $authConfig): string
{
// $origin = 'https://door.casbin.com';
// $redirectUri = sprintf('%s/callback', $origin);
Expand Down

0 comments on commit aae072a

Please sign in to comment.