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
!10665
Issue
#3256822
: StreamWrapperManager Service has public methods not on interface
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Issue
#3256822
: StreamWrapperManager Service has public methods not on interface
issue/drupal-3256822:3256822-streamwrappermanager-service-has
into
11.x
Overview
3
Commits
7
Pipelines
7
Changes
3
All threads resolved!
Hide all comments
Open
Bram Driesen
requested to merge
issue/drupal-3256822:3256822-streamwrappermanager-service-has
into
11.x
5 months ago
Overview
3
Commits
7
Pipelines
7
Changes
3
All threads resolved!
Hide all comments
Expand
Closes
#3256822
0
0
Merge request reports
Compare
11.x
version 6
c92ece82
5 months ago
version 5
9946eaaf
5 months ago
version 4
34314716
5 months ago
version 3
481a6d86
5 months ago
version 2
f720888f
5 months ago
version 1
a079dc9a
5 months ago
11.x (HEAD)
and
latest version
latest version
ef2198e8
7 commits,
5 months ago
version 6
c92ece82
6 commits,
5 months ago
version 5
9946eaaf
5 commits,
5 months ago
version 4
34314716
4 commits,
5 months ago
version 3
481a6d86
3 commits,
5 months ago
version 2
f720888f
2 commits,
5 months ago
version 1
a079dc9a
1 commit,
5 months ago
3 files
+
47
−
51
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
core/lib/Drupal/Core/StreamWrapper/CoreStreamWrapperManagerInterface.php
0 → 100644
+
39
−
0
Options
<?php
namespace
Drupal\Core\StreamWrapper
;
/**
* Provides StreamWrapper manager methods utilized by Core.
*
* @see \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface
*
* @internal
* These methods are necessary for a StreamWrapper manager to implement
* however unlike methods on StreamWrapperManagerInterface these methods
* generally should only be invoked by Drupal Core and not third parties.
*/
interface
CoreStreamWrapperManagerInterface
{
/**
* Adds a stream wrapper.
*
* @param string $service_id
* The service id.
* @param string $class
* The stream wrapper class.
* @param string $scheme
* The scheme for which the wrapper should be registered.
*/
public
function
addStreamWrapper
(
string
$service_id
,
string
$class
,
string
$scheme
):
void
;
/**
* Registers the tagged stream wrappers.
*/
public
function
register
():
void
;
/**
* Un-registers the tagged stream wrappers.
*/
public
function
unregister
():
void
;
}
Loading