File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -129,9 +129,9 @@ public function isEnabled(): bool
129129 }
130130
131131 /**
132- * @param bool $boolean
132+ * @param bool|null $boolean
133133 */
134- public function setEnabled (bool $ boolean ): void
134+ public function setEnabled (bool $ boolean = null ): void
135135 {
136136 $ this ->enabled = (bool ) $ boolean ;
137137 }
Original file line number Diff line number Diff line change @@ -92,9 +92,9 @@ public function isEnabled(): bool
9292 }
9393
9494 /**
95- * @param bool $boolean
95+ * @param bool|null $boolean
9696 */
97- public function setEnabled (bool $ boolean ): void
97+ public function setEnabled (bool $ boolean = null ): void
9898 {
9999 $ this ->enabled = (bool ) $ boolean ;
100100 }
Original file line number Diff line number Diff line change @@ -188,9 +188,9 @@ public function isAllowSystemAdmin(): bool
188188 }
189189
190190 /**
191- * @param bool $boolean
191+ * @param bool|null $boolean
192192 */
193- public function setAllowSystemAdmin (bool $ boolean ): void
193+ public function setAllowSystemAdmin (bool $ boolean = null ): void
194194 {
195195 $ this ->allowSystemAdmin = (bool ) $ boolean ;
196196 }
@@ -399,9 +399,9 @@ public function isEnabled()
399399 }
400400
401401 /**
402- * @param bool $boolean
402+ * @param bool|null $boolean
403403 */
404- public function setEnabled (bool $ boolean ): void
404+ public function setEnabled (bool $ boolean = null ): void
405405 {
406406 $ this ->enabled = (bool ) $ boolean ;
407407 }
You can’t perform that action at this time.
0 commit comments