Skip to content

Commit 1b3fc99

Browse files
minor #33056 cleanup remaining param $options and internal Intl FullTransformer (Tobion)
This PR was merged into the 4.4 branch. Discussion ---------- cleanup remaining param $options and internal Intl FullTransformer | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets |#... <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | Continuation of #33020 and #33019 Commits ------- 5dbcdc6ff4 cleanup remaining param and internal Intl FulLTransformer
2 parents b20ca7e + 5923b65 commit 1b3fc99

File tree

4 files changed

+1
-9
lines changed

4 files changed

+1
-9
lines changed

Console/Descriptor/Descriptor.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ abstract protected function describeContainerTags(ContainerBuilder $builder, arr
132132
* * name: name of described service
133133
*
134134
* @param Definition|Alias|object $service
135-
* @param array $options
136135
*/
137136
abstract protected function describeContainerService($service, array $options = [], ContainerBuilder $builder = null);
138137

@@ -176,7 +175,6 @@ abstract protected function describeEventDispatcherListeners(EventDispatcherInte
176175
* Describes a callable.
177176
*
178177
* @param callable $callable
179-
* @param array $options
180178
*/
181179
abstract protected function describeCallable($callable, array $options = []);
182180

Routing/Router.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ class Router extends BaseRouter implements WarmableInterface, ServiceSubscriberI
3737

3838
/**
3939
* @param mixed $resource The main resource to load
40-
* @param array $options An array of options
4140
*/
4241
public function __construct(ContainerInterface $container, $resource, array $options = [], RequestContext $context = null, ContainerInterface $parameters = null, LoggerInterface $logger = null, string $defaultLocale = null)
4342
{

Templating/Helper/ActionsHelper.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ public function __construct(FragmentHandler $handler)
3636
/**
3737
* Returns the fragment content for a given URI.
3838
*
39-
* @param string $uri A URI
40-
* @param array $options An array of options
39+
* @param string $uri
4140
*
4241
* @return string The fragment content
4342
*

Translation/Translator.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ class Translator extends BaseTranslator implements WarmableInterface
6565
* * debug: Whether to enable debugging or not (false by default)
6666
* * resource_files: List of translation resources available grouped by locale.
6767
*
68-
* @param string $defaultLocale
69-
* @param array $loaderIds An array of loader Ids
70-
* @param array $options An array of options
71-
*
7268
* @throws InvalidArgumentException
7369
*/
7470
public function __construct(ContainerInterface $container, MessageFormatterInterface $formatter, string $defaultLocale, array $loaderIds = [], array $options = [])

0 commit comments

Comments
 (0)