Skip to content

Commit 811b756

Browse files
Merge branch '3.4' into 4.3
* 3.4: Remove superfluous phpdoc tags
2 parents f9ce6b6 + 8b74e93 commit 811b756

File tree

5 files changed

+3
-21
lines changed

5 files changed

+3
-21
lines changed

CacheWarmer/AbstractPhpFileCacheWarmer.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ final protected function ignoreAutoloadException($class, \Exception $exception)
8181
}
8282

8383
/**
84-
* @param string $cacheDir
85-
* @param ArrayAdapter $arrayAdapter
84+
* @param string $cacheDir
8685
*
8786
* @return bool false if there is nothing to warm-up
8887
*/

Console/Descriptor/Descriptor.php

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +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
136-
* @param ContainerBuilder|null $builder
137135
*/
138136
abstract protected function describeContainerService($service, array $options = [], ContainerBuilder $builder = null);
139137

@@ -177,7 +175,6 @@ abstract protected function describeEventDispatcherListeners(EventDispatcherInte
177175
* Describes a callable.
178176
*
179177
* @param callable $callable
180-
* @param array $options
181178
*/
182179
abstract protected function describeCallable($callable, array $options = []);
183180

@@ -224,8 +221,7 @@ protected function formatParameter($value)
224221
}
225222

226223
/**
227-
* @param ContainerBuilder $builder
228-
* @param string $serviceId
224+
* @param string $serviceId
229225
*
230226
* @return mixed
231227
*/
@@ -249,8 +245,7 @@ protected function resolveServiceDefinition(ContainerBuilder $builder, $serviceI
249245
}
250246

251247
/**
252-
* @param ContainerBuilder $builder
253-
* @param bool $showHidden
248+
* @param bool $showHidden
254249
*
255250
* @return array
256251
*/

Kernel/MicroKernelTrait.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ trait MicroKernelTrait
2929
*
3030
* $routes->import('config/routing.yml');
3131
* $routes->add('/admin', 'App\Controller\AdminController::dashboard', 'admin_dashboard');
32-
*
33-
* @param RouteCollectionBuilder $routes
3432
*/
3533
abstract protected function configureRoutes(RouteCollectionBuilder $routes);
3634

@@ -50,9 +48,6 @@ abstract protected function configureRoutes(RouteCollectionBuilder $routes);
5048
* Or parameters:
5149
*
5250
* $c->setParameter('halloween', 'lot of fun');
53-
*
54-
* @param ContainerBuilder $c
55-
* @param LoaderInterface $loader
5651
*/
5752
abstract protected function configureContainer(ContainerBuilder $c, LoaderInterface $loader);
5853

Routing/Router.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ class Router extends BaseRouter implements WarmableInterface, ServiceSubscriberI
4141
* @param array $options An array of options
4242
* @param RequestContext $context The context
4343
* @param ContainerInterface|null $parameters A ContainerInterface instance allowing to fetch parameters
44-
* @param LoggerInterface|null $logger
4544
*/
4645
public function __construct(ContainerInterface $container, $resource, array $options = [], RequestContext $context = null, ContainerInterface $parameters = null, LoggerInterface $logger = null, string $defaultLocale = null)
4746
{

Translation/Translator.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +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 ContainerInterface $container A ContainerInterface instance
69-
* @param MessageFormatterInterface $formatter The message formatter
70-
* @param string $defaultLocale
71-
* @param array $loaderIds An array of loader Ids
72-
* @param array $options An array of options
73-
*
7468
* @throws InvalidArgumentException
7569
*/
7670
public function __construct(ContainerInterface $container, MessageFormatterInterface $formatter, string $defaultLocale, array $loaderIds = [], array $options = [])

0 commit comments

Comments
 (0)