Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
project_browser
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
project_browser
Merge requests
!738
Sketch in the normalizer
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Sketch in the normalizer
issue/project_browser-3506454:3506454-project-normalizer
into
2.0.x
Overview
8
Commits
51
Pipelines
28
Changes
15
Merged
Adam G-H
requested to merge
issue/project_browser-3506454:3506454-project-normalizer
into
2.0.x
1 month ago
Overview
8
Commits
51
Pipelines
28
Changes
15
Expand
Closes
#3506454
0
0
Merge request reports
Compare
2.0.x
version 27
86295d5d
1 month ago
version 26
e1431507
1 month ago
version 25
5df425de
1 month ago
version 24
3b000e25
1 month ago
version 23
411914a7
1 month ago
version 22
bab0bd11
1 month ago
version 21
93a567f3
1 month ago
version 20
6e6b66f5
1 month ago
version 19
00ab1b3d
1 month ago
version 18
61a68494
1 month ago
version 17
9dbfc93e
1 month ago
version 16
4df01dd8
1 month ago
version 15
945f511e
1 month ago
version 14
ea4532e1
1 month ago
version 13
3abfc5e2
1 month ago
version 12
68c4f2e7
1 month ago
version 11
bfeb65ec
1 month ago
version 10
d1d1efc3
1 month ago
version 9
24085764
1 month ago
version 8
76097e3e
1 month ago
version 7
8b908709
1 month ago
version 6
b0bf4669
1 month ago
version 5
eeae74d9
1 month ago
version 4
ff90a1f4
1 month ago
version 3
c7c50036
1 month ago
version 2
11115eae
1 month ago
version 1
efcfba6d
1 month ago
2.0.x (base)
and
latest version
latest version
86295d5d
51 commits,
1 month ago
version 27
86295d5d
51 commits,
1 month ago
version 26
e1431507
50 commits,
1 month ago
version 25
5df425de
22 commits,
1 month ago
version 24
3b000e25
26 commits,
1 month ago
version 23
411914a7
25 commits,
1 month ago
version 22
bab0bd11
24 commits,
1 month ago
version 21
93a567f3
22 commits,
1 month ago
version 20
6e6b66f5
21 commits,
1 month ago
version 19
00ab1b3d
20 commits,
1 month ago
version 18
61a68494
19 commits,
1 month ago
version 17
9dbfc93e
16 commits,
1 month ago
version 16
4df01dd8
16 commits,
1 month ago
version 15
945f511e
16 commits,
1 month ago
version 14
ea4532e1
15 commits,
1 month ago
version 13
3abfc5e2
14 commits,
1 month ago
version 12
68c4f2e7
14 commits,
1 month ago
version 11
bfeb65ec
13 commits,
1 month ago
version 10
d1d1efc3
12 commits,
1 month ago
version 9
24085764
11 commits,
1 month ago
version 8
76097e3e
10 commits,
1 month ago
version 7
8b908709
9 commits,
1 month ago
version 6
b0bf4669
6 commits,
1 month ago
version 5
eeae74d9
5 commits,
1 month ago
version 4
ff90a1f4
4 commits,
1 month ago
version 3
c7c50036
3 commits,
1 month ago
version 2
11115eae
2 commits,
1 month ago
version 1
efcfba6d
1 commit,
1 month ago
15 files
+
257
−
195
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
Search (e.g. *.vue) (Ctrl+P)
src/Activator/ActivatorInterface.php
+
3
−
6
Options
@@ -5,7 +5,6 @@ declare(strict_types=1);
namespace
Drupal\project_browser\Activator
;
use
Drupal\project_browser
\ProjectBrowser\Project
;
use
Symfony\Component\HttpFoundation\Response
;
/**
* Defines an interface for services which can activate projects.
@@ -48,11 +47,9 @@ interface ActivatorInterface {
* @param \Drupal\project_browser\ProjectBrowser\Project $project
* The project to activate.
*
* @return \Symfony\Component\HttpFoundation\Response|null
* Optionally, a response that should be presented to the user in Project
* Browser. This could be a set of additional instructions to display in a
* modal, for example, or a redirect to a configuration form.
* @return \Drupal\Core\Ajax\CommandInterface[]|null
* Optionally, an array of AJAX commands to run on the front end.
*/
public
function
activate
(
Project
$project
):
?
Response
;
public
function
activate
(
Project
$project
):
?
array
;
}
Loading