Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
s3fs
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
s3fs
Commits
c5c85de5
Commit
c5c85de5
authored
6 months ago
by
Luca Rossi
Committed by
Conrad Lara
6 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3469460
by luxx91: Use LoggerInterface instead of LoggerChannelInterface
parent
30c6db45
No related branches found
Branches containing commit
No related tags found
1 merge request
!64
Issue #3469460: use LoggerInterface instead of LoggerChannelInterface
Pipeline
#331058
failed
3 months ago
Stage: .pre
Stage: build
Stage: validate
Stage: test
Changes
1
Pipelines
13
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Controller/NewS3fsImageStyleDownloadController.php
+3
-3
3 additions, 3 deletions
src/Controller/NewS3fsImageStyleDownloadController.php
with
3 additions
and
3 deletions
src/Controller/NewS3fsImageStyleDownloadController.php
+
3
−
3
View file @
c5c85de5
...
...
@@ -8,7 +8,6 @@ use Drupal\Core\Config\ConfigFactoryInterface;
use
Drupal\Core\DependencyInjection\ContainerInjectionInterface
;
use
Drupal\Core\Entity\EntityTypeManagerInterface
;
use
Drupal\Core\Lock\LockBackendInterface
;
use
Drupal\Core\Logger\LoggerChannelInterface
;
use
Drupal\Core\Routing\TrustedRedirectResponse
;
use
Drupal\Core\Site\Settings
;
use
Drupal\Core\StreamWrapper\StreamWrapperManager
;
...
...
@@ -16,6 +15,7 @@ use Drupal\Core\StreamWrapper\StreamWrapperManagerInterface;
use
Drupal\Core\StringTranslation\StringTranslationTrait
;
use
Drupal\Core\StringTranslation\TranslationInterface
;
use
Drupal\image\ImageStyleInterface
;
use
Psr\Log\LoggerInterface
;
use
Symfony\Component\DependencyInjection\ContainerInterface
;
use
Symfony\Component\HttpFoundation\Request
;
use
Symfony\Component\HttpFoundation\Response
;
...
...
@@ -63,7 +63,7 @@ final class NewS3fsImageStyleDownloadController implements ContainerInjectionInt
/**
* The S3fs logger channel.
*
* @var \
Drupal\Core
\Log
ger
\Logger
Channel
Interface
* @var \
Psr
\Log\LoggerInterface
*/
protected
$logger
;
...
...
@@ -72,7 +72,7 @@ final class NewS3fsImageStyleDownloadController implements ContainerInjectionInt
StreamWrapperManagerInterface
$stream_wrapper_manager
,
ConfigFactoryInterface
$config
,
EntityTypeManagerInterface
$entity_type_manager
,
Logger
Channel
Interface
$logger
,
LoggerInterface
$logger
,
TranslationInterface
$string_translation
)
{
$this
->
lock
=
$lock
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment