@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | /** |
73 | 73 | * Sets closed date. |
74 | 74 | * |
75 | - * @param \DateTime|null $closedDate The closed date |
|
75 | + * @param \DateTime $closedDate The closed date |
|
76 | 76 | * |
77 | 77 | * @return $this self Object |
78 | 78 | */ |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | /** |
227 | 227 | * Sets locked date. |
228 | 228 | * |
229 | - * @param \DateTime|null $lockedDate The locked date |
|
229 | + * @param \DateTime $lockedDate The locked date |
|
230 | 230 | * |
231 | 231 | * @return $this self Object |
232 | 232 | */ |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | /** |
22 | 22 | * Sets approval date. |
23 | 23 | * |
24 | - * @param \DateTime|null $approvalDate The approval date |
|
24 | + * @param \DateTime $approvalDate The approval date |
|
25 | 25 | * |
26 | 26 | * @return $this self Object |
27 | 27 | */ |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | /** |
102 | 102 | * Sets proposing user. |
103 | 103 | * |
104 | - * @param \BenatEspina\StackExchangeApiClient\Model\Interfaces\ShallowUserInterface|null $proposingUser The |
|
104 | + * @param ShallowUserInterface $proposingUser The |
|
105 | 105 | * proposing |
106 | 106 | * user |
107 | 107 | * |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | /** |
120 | 120 | * Sets rejection date. |
121 | 121 | * |
122 | - * @param \DateTime|null $rejectionDate The rejection date |
|
122 | + * @param \DateTime $rejectionDate The rejection date |
|
123 | 123 | * |
124 | 124 | * @return $this self Object |
125 | 125 | */ |
@@ -85,7 +85,7 @@ |
||
85 | 85 | /** |
86 | 86 | * Sets last activity date. |
87 | 87 | * |
88 | - * @param \DateTime|null $lastActivityDate The last activity date. |
|
88 | + * @param \DateTime $lastActivityDate The last activity date. |
|
89 | 89 | * |
90 | 90 | * @return $this self Object |
91 | 91 | */ |
@@ -69,7 +69,7 @@ |
||
69 | 69 | /** |
70 | 70 | * Sets last applied date. |
71 | 71 | * |
72 | - * @param \DateTime|null $lastAppliedDate The last applied date |
|
72 | + * @param \DateTime $lastAppliedDate The last applied date |
|
73 | 73 | * |
74 | 74 | * @return $this self Object |
75 | 75 | */ |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | /** |
38 | 38 | * Sets body last edit date. |
39 | 39 | * |
40 | - * @param \DateTime|null $bodyLastEditDate The body last edit date |
|
40 | + * @param \DateTime $bodyLastEditDate The body last edit date |
|
41 | 41 | * |
42 | 42 | * @return $this self Object |
43 | 43 | */ |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | /** |
70 | 70 | * Sets excerpt last edit date. |
71 | 71 | * |
72 | - * @param \DateTime|null $excerptLastEditDate The excerpt last edit date |
|
72 | + * @param \DateTime $excerptLastEditDate The excerpt last edit date |
|
73 | 73 | * |
74 | 74 | * @return $this self Object |
75 | 75 | */ |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | /** |
86 | 86 | * Sets last body editor. |
87 | 87 | * |
88 | - * @param \BenatEspina\StackExchangeApiClient\Model\Interfaces\ShallowUserInterface|null $lastBodyEditor The last |
|
88 | + * @param ShallowUserInterface $lastBodyEditor The last |
|
89 | 89 | * body editor |
90 | 90 | * |
91 | 91 | * @return $this self Object |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | /** |
103 | 103 | * Sets last excerpt editor. |
104 | 104 | * |
105 | - * @param \BenatEspina\StackExchangeApiClient\Model\Interfaces\ShallowUserInterface|null $lastExcerptEditor The last |
|
105 | + * @param ShallowUserInterface $lastExcerptEditor The last |
|
106 | 106 | * excerpt |
107 | 107 | * editor |
108 | 108 | * |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | /** |
24 | 24 | * Sets migrated from. |
25 | 25 | * |
26 | - * @param \BenatEspina\StackExchangeApiClient\Model\Interfaces\MigrationInfoInterface|null $migrationInfo The |
|
26 | + * @param MigrationInfoInterface $migrationInfo The |
|
27 | 27 | * migration |
28 | 28 | * info |
29 | 29 | * |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | /** |
42 | 42 | * Sets migrated to. |
43 | 43 | * |
44 | - * @param \BenatEspina\StackExchangeApiClient\Model\Interfaces\MigrationInfoInterface|null $migrationInfo The |
|
44 | + * @param MigrationInfoInterface $migrationInfo The |
|
45 | 45 | * migration |
46 | 46 | * info |
47 | 47 | * |
@@ -15,8 +15,8 @@ |
||
15 | 15 | use BenatEspina\StackExchangeApiClient\Model\Interfaces\AnswerInterface; |
16 | 16 | use BenatEspina\StackExchangeApiClient\Model\Interfaces\NoticeInterface; |
17 | 17 | use BenatEspina\StackExchangeApiClient\Model\Interfaces\QuestionInterface; |
18 | -use BenatEspina\StackExchangeApiClient\Model\Traits\AnsweredTrait; |
|
19 | 18 | use BenatEspina\StackExchangeApiClient\Model\Traits\AnswerTrait; |
19 | +use BenatEspina\StackExchangeApiClient\Model\Traits\AnsweredTrait; |
|
20 | 20 | use BenatEspina\StackExchangeApiClient\Model\Traits\BountyTrait; |
21 | 21 | use BenatEspina\StackExchangeApiClient\Model\Traits\CloseTrait; |
22 | 22 | use BenatEspina\StackExchangeApiClient\Model\Traits\FavoriteTrait; |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | /** |
71 | 71 | * Sets bounty closes date. |
72 | 72 | * |
73 | - * @param \DateTime|null $bountyClosesDate The bounty closes date |
|
73 | + * @param \DateTime $bountyClosesDate The bounty closes date |
|
74 | 74 | * |
75 | 75 | * @return $this self Object |
76 | 76 | */ |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | /** |
95 | 95 | * Sets bounty user. |
96 | 96 | * |
97 | - * @param \BenatEspina\StackExchangeApiClient\Model\Interfaces\ShallowUserInterface|null $bountyUser The bounty user |
|
97 | + * @param ShallowUserInterface $bountyUser The bounty user |
|
98 | 98 | * |
99 | 99 | * @return $this self Object |
100 | 100 | */ |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | /** |
109 | 109 | * Sets closed date. |
110 | 110 | * |
111 | - * @param \DateTime|null $closedDate The closed date |
|
111 | + * @param \DateTime $closedDate The closed date |
|
112 | 112 | * |
113 | 113 | * @return $this self Object |
114 | 114 | */ |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | /** |
133 | 133 | * Sets closed details. |
134 | 134 | * |
135 | - * @param \BenatEspina\StackExchangeApiClient\Model\Interfaces\ClosedDetailsInterface|null $closedDetails The closed |
|
135 | + * @param ClosedDetailsInterface $closedDetails The closed |
|
136 | 136 | * details |
137 | 137 | * |
138 | 138 | * @return $this self Object |