Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openid_connect
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
openid_connect
Merge requests
!110
Issue
#3452009
by John Franklin: Drupal 11 updates
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Issue
#3452009
by John Franklin: Drupal 11 updates
issue/openid_connect-3452009:3452009-drupal-11-compatibility
into
3.x
Overview
4
Commits
13
Pipelines
9
Changes
16
2 open threads
Thread options
Hide all comments
Merged
Issue #3452009 by John Franklin: Drupal 11 updates
John Franklin
requested to merge
issue/openid_connect-3452009:3452009-drupal-11-compatibility
into
3.x
Jun 2, 2024
Overview
4
Commits
13
Pipelines
9
Changes
16
2 open threads
Thread options
Hide all comments
Style change in OpenIDConnectClientFormBase::exists() to match similar functions (e.g., FilterFormatFormBase::exists() from core)
Add TypedConfigManagerInterface now required by ConfigFormBase
Update openid_connect.info.yml
Closes
#3452009
0
0
Merge request reports
Compare
3.x
version 7
71a6e0c4
10 months ago
version 6
ac1c36da
10 months ago
version 5
1df6c83b
10 months ago
version 4
447f90eb
10 months ago
version 3
6f096511
10 months ago
version 2
bacd19e0
10 months ago
version 1
79806371
Jun 2, 2024
3.x (base)
and
latest version
latest version
1aee9b5e
13 commits,
10 months ago
version 7
71a6e0c4
12 commits,
10 months ago
version 6
ac1c36da
11 commits,
10 months ago
version 5
1df6c83b
9 commits,
10 months ago
version 4
447f90eb
8 commits,
10 months ago
version 3
6f096511
7 commits,
10 months ago
version 2
bacd19e0
2 commits,
10 months ago
version 1
79806371
1 commit,
Jun 2, 2024
16 files
+
83
−
56
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
src/Form/OpenIDConnectAccountsForm.php
+
1
−
1
View file @ 1aee9b5e
Edit in single-file editor
Open in Web IDE
Show full file
@@ -106,7 +106,7 @@ class OpenIDConnectAccountsForm extends FormBase {
/**
* {@inheritdoc}
*/
public
function
buildForm
(
array
$form
,
FormStateInterface
$form_state
,
AccountInterface
$user
=
NULL
):
array
{
public
function
buildForm
(
array
$form
,
FormStateInterface
$form_state
,
?
AccountInterface
$user
=
NULL
):
array
{
$form_state
->
set
(
'account'
,
$user
);
/** @var \Drupal\openid_connect\OpenIDConnectClientEntityInterface[] $clients */
Loading