Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
codestyle fixes
  • Loading branch information
wickedOne committed Nov 20, 2023
commit 2bfea583cac94e14e31f976c25a3303516595497
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ final class TranslationPullCommand extends Command
private array $enabledLocales;
private ?EventDispatcherInterface $eventDispatcher;

public function __construct(TranslationProviderCollection $providerCollection, TranslationWriterInterface $writer, TranslationReaderInterface $reader, string $defaultLocale, array $transPaths = [], array $enabledLocales = [], ?EventDispatcherInterface $eventDispatcher = null)
public function __construct(TranslationProviderCollection $providerCollection, TranslationWriterInterface $writer, TranslationReaderInterface $reader, string $defaultLocale, array $transPaths = [], array $enabledLocales = [], EventDispatcherInterface $eventDispatcher = null)
{
$this->providerCollection = $providerCollection;
$this->writer = $writer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class TranslationPushCommand extends Command
private array $enabledLocales;
private ?EventDispatcherInterface $dispatcher;

public function __construct(TranslationProviderCollection $providers, TranslationReaderInterface $reader, array $transPaths = [], array $enabledLocales = [], ?EventDispatcherInterface $dispatcher = null)
public function __construct(TranslationProviderCollection $providers, TranslationReaderInterface $reader, array $transPaths = [], array $enabledLocales = [], EventDispatcherInterface $dispatcher = null)
{
$this->providers = $providers;
$this->reader = $reader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

/*
* This file is part of the Symfony package.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

/*
* This file is part of the Symfony package.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

/*
* This file is part of the Symfony package.
*
Expand Down