Skip to content

Commit b7538d3

Browse files
committed
Initialize vars
1 parent 93d1584 commit b7538d3

1 file changed

Lines changed: 8 additions & 46 deletions

File tree

src/Surfnet/StepupMiddlewareClient/Identity/Dto/RaSecondFactorExportQuery.php

Lines changed: 8 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -31,54 +31,16 @@ final class RaSecondFactorExportQuery implements HttpQuery
3131
public const STATUS_VETTED = 'vetted';
3232
public const STATUS_REVOKED = 'revoked';
3333

34-
/**
35-
* @var string|null
36-
*/
37-
private ?string $name;
38-
39-
/**
40-
* @var string|null
41-
*/
42-
private ?string $type;
43-
44-
/**
45-
* @var string|null The second factor type's ID (eg. Yubikey public ID)
46-
*/
47-
private ?string $secondFactorId;
48-
49-
/**
50-
* @var string|null
51-
*/
52-
private ?string $email;
53-
54-
/**
55-
* @var string|null
56-
*/
57-
private ?string $institution;
58-
59-
/**
60-
* @var string|null One of the STATUS_* constants.
61-
*/
62-
private ?string $status;
63-
64-
/**
65-
* @var string|null
66-
*/
67-
private ?string $orderBy;
68-
69-
/**
70-
* @var string|null
71-
*/
72-
private ?string $orderDirection;
73-
74-
/**
75-
* @var string
76-
*/
34+
private ?string $name = null;
35+
private ?string $type = null;
36+
private ?string $secondFactorId = null;
37+
private ?string $email = null;
38+
private ?string $institution = null;
39+
private ?string $status = null;
40+
private ?string $orderBy = null;
41+
private ?string $orderDirection = null;
7742
private string $actorId;
7843

79-
/**
80-
* @param string $actorId
81-
*/
8244
public function __construct(string $actorId)
8345
{
8446
$this->assertNonEmptyString($actorId, 'actorId');

0 commit comments

Comments
 (0)