Skip to content

Commit a44ee61

Browse files
committed
Remove useless phpdoc
1 parent 3e9b971 commit a44ee61

File tree

9 files changed

+0
-141
lines changed

9 files changed

+0
-141
lines changed

Command/ChangePasswordCommand.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
use Symfony\Component\Console\Output\OutputInterface;
1919
use Symfony\Component\Console\Question\Question;
2020

21-
/**
22-
* ChangePasswordCommand.
23-
*/
2421
class ChangePasswordCommand extends Command
2522
{
2623
protected static $defaultName = 'fos:user:change-password';

Controller/ChangePasswordController.php

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -33,26 +33,10 @@
3333
*/
3434
class ChangePasswordController extends Controller
3535
{
36-
/**
37-
* @var EventDispatcherInterface
38-
*/
3936
private $eventDispatcher;
40-
41-
/**
42-
* @var FactoryInterface
43-
*/
4437
private $formFactory;
45-
46-
/**
47-
* @var UserManagerInterface
48-
*/
4938
private $userManager;
5039

51-
/**
52-
* @param EventDispatcherInterface $eventDispatcher
53-
* @param FactoryInterface $formFactory
54-
* @param UserManagerInterface $userManager
55-
*/
5640
public function __construct(EventDispatcherInterface $eventDispatcher, FactoryInterface $formFactory, UserManagerInterface $userManager)
5741
{
5842
$this->eventDispatcher = $eventDispatcher;

Controller/ConfirmEmailUpdateController.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,8 @@
3131
*/
3232
class ConfirmEmailUpdateController extends Controller
3333
{
34-
/**
35-
* @var EventDispatcherInterface
36-
*/
3734
private $eventDispatcher;
38-
39-
/**
40-
* @var UserManagerInterface
41-
*/
4235
private $userManager;
43-
44-
/**
45-
* @var EmailUpdateConfirmation
46-
*/
4736
private $emailUpdateConfirmation;
4837

4938
/**

Controller/GroupController.php

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,10 @@
3434
*/
3535
class GroupController extends Controller
3636
{
37-
/**
38-
* @var EventDispatcherInterface
39-
*/
4037
private $eventDispatcher;
41-
42-
/**
43-
* @var FactoryInterface
44-
*/
4538
private $formFactory;
46-
47-
/**
48-
* @var GroupManagerInterface
49-
*/
5039
private $groupManager;
5140

52-
/**
53-
* @param EventDispatcherInterface $eventDispatcher
54-
* @param FactoryInterface $formFactory
55-
* @param GroupManagerInterface $groupManager
56-
*/
5741
public function __construct(EventDispatcherInterface $eventDispatcher, FactoryInterface $formFactory, GroupManagerInterface $groupManager)
5842
{
5943
$this->eventDispatcher = $eventDispatcher;

Controller/ProfileController.php

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,10 @@
3232
*/
3333
class ProfileController extends Controller
3434
{
35-
/**
36-
* @var EventDispatcherInterface
37-
*/
3835
private $eventDispatcher;
39-
40-
/**
41-
* @var FactoryInterface
42-
*/
4336
private $formFactory;
44-
45-
/**
46-
* @var UserManagerInterface
47-
*/
4837
private $userManager;
4938

50-
/**
51-
* @param EventDispatcherInterface $eventDispatcher
52-
* @param FactoryInterface $formFactory
53-
* @param UserManagerInterface $userManager
54-
*/
5539
public function __construct(EventDispatcherInterface $eventDispatcher, FactoryInterface $formFactory, UserManagerInterface $userManager)
5640
{
5741
$this->eventDispatcher = $eventDispatcher;

Controller/RegistrationController.php

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -36,32 +36,11 @@
3636
*/
3737
class RegistrationController extends Controller
3838
{
39-
/**
40-
* @var EventDispatcherInterface
41-
*/
4239
private $eventDispatcher;
43-
44-
/**
45-
* @var FactoryInterface
46-
*/
4740
private $formFactory;
48-
49-
/**
50-
* @var UserManagerInterface
51-
*/
5241
private $userManager;
53-
54-
/**
55-
* @var TokenStorageInterface
56-
*/
5742
private $tokenStorage;
5843

59-
/**
60-
* @param EventDispatcherInterface $eventDispatcher
61-
* @param FactoryInterface $formFactory
62-
* @param UserManagerInterface $userManager
63-
* @param TokenStorageInterface $tokenStorage
64-
*/
6544
public function __construct(EventDispatcherInterface $eventDispatcher, FactoryInterface $formFactory, UserManagerInterface $userManager, TokenStorageInterface $tokenStorage)
6645
{
6746
$this->eventDispatcher = $eventDispatcher;

Controller/ResettingController.php

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -35,29 +35,10 @@
3535
*/
3636
class ResettingController extends Controller
3737
{
38-
/**
39-
* @var EventDispatcherInterface
40-
*/
4138
private $eventDispatcher;
42-
43-
/**
44-
* @var FactoryInterface
45-
*/
4639
private $formFactory;
47-
48-
/**
49-
* @var UserManagerInterface
50-
*/
5140
private $userManager;
52-
53-
/**
54-
* @var TokenGeneratorInterface
55-
*/
5641
private $tokenGenerator;
57-
58-
/**
59-
* @var MailerInterface
60-
*/
6142
private $mailer;
6243

6344
/**

Controller/SecurityController.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,8 @@
2727
*/
2828
class SecurityController extends Controller
2929
{
30-
/**
31-
* @var CsrfTokenManagerInterface
32-
*/
3330
private $tokenManager;
3431

35-
/**
36-
* @param CsrfTokenManagerInterface $tokenManager
37-
*/
3832
public function __construct(CsrfTokenManagerInterface $tokenManager = null)
3933
{
4034
$this->tokenManager = $tokenManager;

Services/EmailConfirmation/EmailUpdateConfirmation.php

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -23,30 +23,13 @@
2323
use Symfony\Component\HttpFoundation\Request;
2424
use Symfony\Component\Routing\RouterInterface;
2525

26-
/**
27-
* Class EmailUpdateConfirmation.
28-
*/
2926
class EmailUpdateConfirmation implements EmailUpdateConfirmationInterface
3027
{
3128
const EMAIL_CONFIRMED = 'email_confirmed';
3229

33-
/**
34-
* @var MailerInterface
35-
*/
3630
private $mailer;
37-
/**
38-
* @var Router
39-
*/
4031
private $router;
41-
42-
/**
43-
* @var TokenGenerator
44-
*/
4532
private $tokenGenerator;
46-
47-
/**
48-
* @var EmailEncryptionInterface
49-
*/
5033
private $emailEncryption;
5134

5235
/**
@@ -63,20 +46,8 @@ class EmailUpdateConfirmation implements EmailUpdateConfirmationInterface
6346
* @var string Route for confirmation link
6447
*/
6548
private $confirmationRoute;
66-
67-
/**
68-
* @var EventDispatcherInterface
69-
*/
7049
private $eventDispatcher;
7150

72-
/**
73-
* EmailUpdateConfirmation constructor.
74-
*
75-
* @param Router $router
76-
* @param TokenGenerator $tokenGenerator
77-
* @param MailerInterface $mailer
78-
* @param EmailEncryptionInterface $emailEncryption
79-
*/
8051
public function __construct(
8152
Router $router,
8253
TokenGenerator $tokenGenerator,
@@ -85,13 +56,9 @@ public function __construct(
8556
EventDispatcherInterface $eventDispatcher
8657
) {
8758
$this->router = $router;
88-
8959
$this->tokenGenerator = $tokenGenerator;
90-
9160
$this->mailer = $mailer;
92-
9361
$this->emailEncryption = $emailEncryption;
94-
9562
$this->eventDispatcher = $eventDispatcher;
9663
}
9764

0 commit comments

Comments
 (0)