Skip to content

Commit 2443511

Browse files
Remove useless docblocks
1 parent 711bdc9 commit 2443511

File tree

223 files changed

+257
-1438
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

223 files changed

+257
-1438
lines changed

src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/DoctrineValidationPass.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
*/
2323
class DoctrineValidationPass implements CompilerPassInterface
2424
{
25-
/**
26-
* @var string
27-
*/
2825
private $managerType;
2926

27+
/**
28+
* @param string $managerType
29+
*/
3030
public function __construct($managerType)
3131
{
3232
$this->managerType = $managerType;

src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterEventListenersAndSubscribersPass.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
*/
2727
class RegisterEventListenersAndSubscribersPass implements CompilerPassInterface
2828
{
29-
/**
30-
* @var string|string[]
31-
*/
3229
private $connections;
3330
private $eventManagers;
3431
private $managerTemplate;

src/Symfony/Bridge/Doctrine/DependencyInjection/CompilerPass/RegisterMappingsPass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ abstract class RegisterMappingsPass implements CompilerPassInterface
113113
* present to enable the mapping. Set to false
114114
* to not do any check, optional.
115115
* @param string $configurationPattern Pattern for the Configuration service name
116-
* @param string $registerAliasMethodName name of Configuration class method to
116+
* @param string $registerAliasMethodName Name of Configuration class method to
117117
* register alias
118118
* @param string[] $aliasMap Map of alias to namespace
119119
*/
@@ -178,7 +178,7 @@ protected function getChainDriverServiceName(ContainerBuilder $container)
178178
/**
179179
* Create the service definition for the metadata driver.
180180
*
181-
* @param ContainerBuilder $container passed on in case an extending class
181+
* @param ContainerBuilder $container Passed on in case an extending class
182182
* needs access to the container
183183
*
184184
* @return Definition|Reference the metadata driver to add to all chain drivers

src/Symfony/Bridge/Doctrine/ExpressionLanguage/DoctrineParserCache.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
*/
2121
class DoctrineParserCache implements ParserCacheInterface
2222
{
23-
/**
24-
* @var Cache
25-
*/
2623
private $cache;
2724

2825
public function __construct(Cache $cache)

src/Symfony/Bridge/Doctrine/Form/ChoiceList/DoctrineChoiceLoader.php

Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -23,29 +23,10 @@
2323
*/
2424
class DoctrineChoiceLoader implements ChoiceLoaderInterface
2525
{
26-
/**
27-
* @var ChoiceListFactoryInterface
28-
*/
2926
private $factory;
30-
31-
/**
32-
* @var ObjectManager
33-
*/
3427
private $manager;
35-
36-
/**
37-
* @var string
38-
*/
3928
private $class;
40-
41-
/**
42-
* @var IdReader
43-
*/
4429
private $idReader;
45-
46-
/**
47-
* @var null|EntityLoaderInterface
48-
*/
4930
private $objectLoader;
5031

5132
/**
@@ -60,13 +41,10 @@ class DoctrineChoiceLoader implements ChoiceLoaderInterface
6041
* passed which optimizes the object loading for one of the Doctrine
6142
* mapper implementations.
6243
*
63-
* @param ChoiceListFactoryInterface $factory The factory for creating
64-
* the loaded choice list
44+
* @param ChoiceListFactoryInterface $factory The factory for creating the loaded choice list
6545
* @param ObjectManager $manager The object manager
66-
* @param string $class The class name of the
67-
* loaded objects
68-
* @param IdReader $idReader the reader for the object
69-
* IDs
46+
* @param string $class The class name of the loaded objects
47+
* @param IdReader $idReader The reader for the object IDs
7048
* @param null|EntityLoaderInterface $objectLoader The objects loader
7149
*/
7250
public function __construct(ChoiceListFactoryInterface $factory, ObjectManager $manager, $class, IdReader $idReader = null, EntityLoaderInterface $objectLoader = null)

src/Symfony/Bridge/Doctrine/Form/ChoiceList/IdReader.php

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,10 @@
2424
*/
2525
class IdReader
2626
{
27-
/**
28-
* @var ObjectManager
29-
*/
3027
private $om;
31-
32-
/**
33-
* @var ClassMetadata
34-
*/
3528
private $classMetadata;
36-
37-
/**
38-
* @var bool
39-
*/
4029
private $singleId;
41-
42-
/**
43-
* @var bool
44-
*/
4530
private $intId;
46-
47-
/**
48-
* @var string
49-
*/
5031
private $idField;
5132

5233
/**

src/Symfony/Bridge/Doctrine/Form/DoctrineOrmExtension.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,7 @@ class DoctrineOrmExtension extends AbstractExtension
2525
{
2626
protected $registry;
2727

28-
/**
29-
* @var PropertyAccessorInterface
30-
*/
3128
private $propertyAccessor;
32-
33-
/**
34-
* @var ChoiceListFactoryInterface
35-
*/
3629
private $choiceListFactory;
3730

3831
public function __construct(ManagerRegistry $registry, PropertyAccessorInterface $propertyAccessor = null, ChoiceListFactoryInterface $choiceListFactory = null)

src/Symfony/Bridge/Doctrine/Validator/Constraints/UniqueEntityValidator.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
*/
2626
class UniqueEntityValidator extends ConstraintValidator
2727
{
28-
/**
29-
* @var ManagerRegistry
30-
*/
3128
private $registry;
3229

3330
public function __construct(ManagerRegistry $registry)

src/Symfony/Bridge/ProxyManager/LazyProxy/PhpDumper/ProxyDumper.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,8 @@
2525
*/
2626
class ProxyDumper implements DumperInterface
2727
{
28-
/**
29-
* @var string
30-
*/
3128
private $salt;
32-
33-
/**
34-
* @var LazyLoadingValueHolderGenerator
35-
*/
3629
private $proxyGenerator;
37-
38-
/**
39-
* @var BaseGeneratorStrategy
40-
*/
4130
private $classGenerator;
4231

4332
/**

src/Symfony/Bridge/Twig/Extension/StopwatchExtension.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@
2323
class StopwatchExtension extends AbstractExtension
2424
{
2525
private $stopwatch;
26-
27-
/**
28-
* @var bool
29-
*/
3026
private $enabled;
3127

3228
public function __construct(Stopwatch $stopwatch = null, $enabled = true)

0 commit comments

Comments
 (0)