Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
webhooks
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
webhooks
Merge requests
!13
Issue
#3525212
by sanduhrs: Fix phpstan pipeline
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3525212
by sanduhrs: Fix phpstan pipeline
issue/webhooks-3525212:3525212-fix-phpstan-pipeline
into
3.0.x
Overview
0
Commits
2
Pipelines
3
Changes
2
Merged
Stefan Auditor
requested to merge
issue/webhooks-3525212:3525212-fix-phpstan-pipeline
into
3.0.x
2 weeks ago
Overview
0
Commits
2
Pipelines
3
Changes
2
Expand
Closes
#3525212
0
0
Merge request reports
Compare
3.0.x
version 1
38a78a03
2 weeks ago
3.0.x (base)
and
latest version
latest version
c09ff2e7
2 commits,
2 weeks ago
version 1
38a78a03
1 commit,
2 weeks ago
2 files
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/Plugin/QueueWorker/WebhookDispatcher.php
+
3
−
3
Options
@@ -2,7 +2,7 @@
namespace
Drupal\webhooks\Plugin\QueueWorker
;
use
Drupal\Component
\EventDispatcher\
ContainerAware
EventDispatcher
;
use
Symfony\Contracts
\EventDispatcher\EventDispatcher
Interface
;
use
Drupal\Core\Plugin\ContainerFactoryPluginInterface
;
use
Drupal\Core\Queue\QueueWorkerBase
;
use
Drupal\Core\Queue\SuspendQueueException
;
@@ -32,10 +32,10 @@ final class WebhookDispatcher extends QueueWorkerBase implements ContainerFactor
/**
* WebhookDispatcherBase constructor.
*
* @param \
Drupal\Component
\EventDispatcher\
ContainerAware
EventDispatcher $event_dispatcher
* @param \
Symfony\Contracts
\EventDispatcher\EventDispatcher
Interface
$event_dispatcher
* The event dispatcher.
*/
public
function
__construct
(
ContainerAware
EventDispatcher
$event_dispatcher
)
{
public
function
__construct
(
EventDispatcher
Interface
$event_dispatcher
)
{
$this
->
eventDispatcher
=
$event_dispatcher
;
}
Loading