We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e653fb commit ff7a424Copy full SHA for ff7a424
1 file changed
src/PDDikti.php
@@ -11,10 +11,19 @@ class PDDikti
11
12
private string $nim;
13
private string $prodi;
14
- private string|null $id = null;
15
- private string|null $name = null;
16
- private string|null $gender = null;
17
- private bool|null $isGraduated = null;
+
+ /** @var string|null */
+ private ?string $id = null;
18
19
+ private ?string $name = null;
20
21
22
+ private ?string $gender = null;
23
24
+ /** @var bool|null */
25
+ private ?bool $isGraduated = null;
26
27
// STT Wastukancana PT ID
28
private string $pt = '2CE2EA61-3574-43CA-81D5-E8EF77B6DDF7';
29
0 commit comments