Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
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
drupal
Merge requests
!10405
Resolve
#3490355
"Sibling file approach"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Resolve
#3490355
"Sibling file approach"
issue/drupal-3490355:3490355-sibling-file-approach
into
11.x
Overview
0
Commits
17
Pipelines
6
Changes
8
Open
nicxvan
requested to merge
issue/drupal-3490355:3490355-sibling-file-approach
into
11.x
5 months ago
Overview
0
Commits
17
Pipelines
6
Changes
8
Expand
Closes
#3490355
0
0
Merge request reports
Compare
11.x
version 5
dec887e3
5 months ago
version 4
457c432b
5 months ago
version 3
58df80e2
5 months ago
version 2
7e0faa41
5 months ago
version 1
65422e8b
5 months ago
11.x (base)
and
latest version
latest version
b603ae60
17 commits,
5 months ago
version 5
dec887e3
16 commits,
5 months ago
version 4
457c432b
15 commits,
5 months ago
version 3
58df80e2
14 commits,
5 months ago
version 2
7e0faa41
13 commits,
5 months ago
version 1
65422e8b
12 commits,
5 months ago
8 files
+
117
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
core/lib/Drupal/Core/Hook/Attribute/StopProceduralHookScan.php
0 → 100644
+
16
−
0
Options
<?php
declare
(
strict_types
=
1
);
namespace
Drupal\Core\Hook\Attribute
;
/**
* Defines a StopProceduralHookScan attribute object.
*
* This allows contrib and core to mark when a file has no more
* procedural hooks.
*/
#[\Attribute(\Attribute::TARGET_FUNCTION)]
class
StopProceduralHookScan
{
}
Loading