File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed
app/Extensions/OAuth/Providers Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 99
1010final class AuthentikProvider extends OAuthProvider
1111{
12- public function __construct (protected Application $ app ) {}
12+ public function __construct (protected Application $ app )
13+ {
14+ parent ::__construct ($ app );
15+ }
1316
1417 public function getId (): string
1518 {
Original file line number Diff line number Diff line change 1313
1414final class DiscordProvider extends OAuthProvider
1515{
16- public function __construct (protected Application $ app ) {}
16+ public function __construct (protected Application $ app )
17+ {
18+ parent ::__construct ($ app );
19+ }
1720
1821 public function getId (): string
1922 {
Original file line number Diff line number Diff line change 1212
1313final class GithubProvider extends OAuthProvider
1414{
15- public function __construct (protected Application $ app ) {}
15+ public function __construct (protected Application $ app )
16+ {
17+ parent ::__construct ($ app );
18+ }
1619
1720 public function getId (): string
1821 {
Original file line number Diff line number Diff line change 1111
1212final class SteamProvider extends OAuthProvider
1313{
14- public function __construct (protected Application $ app ) {}
14+ public function __construct (protected Application $ app )
15+ {
16+ parent ::__construct ($ app );
17+ }
1518
1619 public function getId (): string
1720 {
You can’t perform that action at this time.
0 commit comments