Skip to content

Commit 055cfbe

Browse files
committed
cleanup remaining param and internal Intl FulLTransformer
1 parent 053ad8d commit 055cfbe

File tree

29 files changed

+26
-122
lines changed

29 files changed

+26
-122
lines changed

src/Symfony/Bundle/FrameworkBundle/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

src/Symfony/Bundle/FrameworkBundle/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
{

src/Symfony/Bundle/FrameworkBundle/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
*

src/Symfony/Bundle/FrameworkBundle/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 = [])

src/Symfony/Component/Cache/Traits/MemcachedTrait.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ private function init(\Memcached $client, string $namespace, int $defaultLifetim
7171
* - [['localhost', 11211, 33]]
7272
*
7373
* @param array[]|string|string[] $servers An array of servers, a DSN, or an array of DSNs
74-
* @param array $options An array of options
7574
*
7675
* @return \Memcached
7776
*

src/Symfony/Component/Console/Descriptor/DescriptorInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ interface DescriptorInterface
2424
* Describes an object if supported.
2525
*
2626
* @param object $object
27-
* @param array $options
2827
*/
2928
public function describe(OutputInterface $output, $object, array $options = []);
3029
}

src/Symfony/Component/Console/Formatter/OutputFormatterStyle.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ class OutputFormatterStyle implements OutputFormatterStyleInterface
6161
*
6262
* @param string|null $foreground The style foreground color name
6363
* @param string|null $background The style background color name
64-
* @param array $options The style options
6564
*/
6665
public function __construct(string $foreground = null, string $background = null, array $options = [])
6766
{

src/Symfony/Component/Console/Helper/DescriptorHelper.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public function __construct()
4949
* * raw_text: boolean, sets output type as raw
5050
*
5151
* @param object $object
52-
* @param array $options
5352
*
5453
* @throws InvalidArgumentException when the given format is not supported
5554
*/

src/Symfony/Component/DependencyInjection/Dumper/DumperInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ interface DumperInterface
2121
/**
2222
* Dumps the service container.
2323
*
24-
* @param array $options An array of options
25-
*
2624
* @return string The representation of the service container
2725
*/
2826
public function dump(array $options = []);

src/Symfony/Component/Form/Extension/Core/EventListener/ResizeFormListener.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ class ResizeFormListener implements EventSubscriberInterface
3232
private $deleteEmpty;
3333

3434
/**
35-
* @param string $type
36-
* @param array $options
3735
* @param bool $allowAdd Whether children could be added to the group
3836
* @param bool $allowDelete Whether children could be removed from the group
3937
* @param bool|callable $deleteEmpty

0 commit comments

Comments
 (0)