Skip to content

Commit bdb35a0

Browse files
committed
fix psalm, ref #333
1 parent 208877e commit bdb35a0

File tree

117 files changed

+132
-551
lines changed

Some content is hidden

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

117 files changed

+132
-551
lines changed

Command/AddUserEmail.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,8 @@
1111
*/
1212
class AddUserEmail
1313
{
14-
/**
15-
* @var UserId
16-
*/
1714
public $userId;
18-
19-
/**
20-
* @var string
21-
*/
2215
public $email;
23-
24-
/**
25-
* @var array
26-
*/
2716
public $context;
2817

2918
public function __construct(UserId $userId, string $email, array $context = [])

Command/AddUserRole.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,8 @@
1111
*/
1212
class AddUserRole
1313
{
14-
/**
15-
* @var UserId
16-
*/
1714
public $userId;
18-
19-
/**
20-
* @var string
21-
*/
2215
public $roleName;
23-
24-
/**
25-
* @var array
26-
*/
2716
public $context;
2817

2918
public function __construct(UserId $userId, string $roleName, array $context = [])

Command/CancelUserPasswordRequest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
*/
1212
class CancelUserPasswordRequest
1313
{
14-
/**
15-
* @var UserId
16-
*/
1714
public $userId;
1815

1916
public function __construct(UserId $userId)

Command/ChangeUserCredential.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,7 @@
1111
*/
1212
class ChangeUserCredential
1313
{
14-
/**
15-
* @var UserId
16-
*/
1714
public $userId;
18-
19-
/**
20-
* @var array
21-
*/
2215
public $fields;
2316

2417
public function __construct(UserId $userId, array $fields)

Command/ConfirmUser.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
*/
1212
class ConfirmUser
1313
{
14-
/**
15-
* @var UserId
16-
*/
1714
public $userId;
1815

1916
public function __construct(UserId $userId)

Command/ConfirmUserEmail.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
*/
1010
class ConfirmUserEmail
1111
{
12-
/**
13-
* @var string
14-
*/
1512
public $email;
1613

1714
public function __construct(string $email)

Command/CreateRole.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
*/
1010
class CreateRole
1111
{
12-
/**
13-
* @var array
14-
*/
1512
public $context;
1613

1714
public function __construct(array $context)

Command/CreateUser.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
*/
1010
class CreateUser
1111
{
12-
/**
13-
* @var array
14-
*/
1512
public $context;
1613

1714
public function __construct(array $context)

Command/DeleteRole.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
*/
1010
class DeleteRole
1111
{
12-
/**
13-
* @var string
14-
*/
1512
public $roleName;
1613

1714
public function __construct(string $roleName)

Command/DeleteUser.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
*/
1212
class DeleteUser
1313
{
14-
/**
15-
* @var UserId
16-
*/
1714
public $userId;
1815

1916
public function __construct(UserId $userId)

0 commit comments

Comments
 (0)