Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cas_mock_server
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
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
cas_mock_server
Merge requests
!5
Drop Drupal 8 support
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Drop Drupal 8 support
issue/cas_mock_server-3286426:3286426-d10
into
8.x-1.x
Overview
0
Commits
8
Pipelines
0
Changes
5
Merged
Claudiu Cristea
requested to merge
issue/cas_mock_server-3286426:3286426-d10
into
8.x-1.x
2 years ago
Overview
0
Commits
8
Pipelines
0
Changes
5
Expand
Closes
#3286426
0
0
Merge request reports
Compare
8.x-1.x
version 7
8ae7302b
2 years ago
version 6
e582d76b
2 years ago
version 5
4bee567c
2 years ago
version 4
e0521e1a
2 years ago
version 3
a17a6709
2 years ago
version 2
954cce65
2 years ago
version 1
63cf3d84
2 years ago
8.x-1.x (base)
and
latest version
latest version
e97b249e
8 commits,
2 years ago
version 7
8ae7302b
7 commits,
2 years ago
version 6
e582d76b
6 commits,
2 years ago
version 5
4bee567c
5 commits,
2 years ago
version 4
e0521e1a
4 commits,
2 years ago
version 3
a17a6709
3 commits,
2 years ago
version 2
954cce65
2 commits,
2 years ago
version 1
63cf3d84
1 commit,
2 years ago
5 files
+
7
−
100
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
src/Controller/CasMockServerController.php
+
2
−
2
Options
@@ -97,7 +97,7 @@ class CasMockServerController extends ControllerBase {
throw
new
NotFoundHttpException
();
}
return
Response
::
create
(
$this
->
getContent
(
$user_data
),
200
);
return
new
Response
(
$this
->
getContent
(
$user_data
),
200
);
}
/**
@@ -140,7 +140,7 @@ class CasMockServerController extends ControllerBase {
// responding with a different XML structure. Allow third-party modules to
// alter the XML document object model (DOM).
$response_alter_event
=
new
CasMockServerResponseAlterEvent
(
$dom
,
$username
,
$user_data
);
$this
->
eventDispatcher
->
dispatch
(
CasMockServerEvents
::
RESPONSE_ALTER
,
$response_alter_event
);
$this
->
eventDispatcher
->
dispatch
(
$response_alter_event
,
CasMockServerEvents
::
RESPONSE_ALTER
);
return
$response_alter_event
->
getDom
()
->
saveXML
();
}
Loading