@@ -188,7 +188,7 @@ public function previous(): void
188188 /**
189189 * Checks if the current step is the first step.
190190 *
191- * @return bool True if the current step is the first; false otherwise.
191+ * @return bool true if the current step is the first; false otherwise
192192 */
193193 #[ExposeInTemplate]
194194 public function isFirst (): bool
@@ -199,7 +199,7 @@ public function isFirst(): bool
199199 /**
200200 * Checks if the current step is the last step.
201201 *
202- * @return bool True if the current step is the last; false otherwise.
202+ * @return bool true if the current step is the last; false otherwise
203203 */
204204 #[ExposeInTemplate]
205205 public function isLast (): bool
@@ -232,7 +232,7 @@ abstract public function onSubmit();
232232 /**
233233 * Retrieves all data from all steps.
234234 *
235- * @return array<string, mixed> An associative array of step names and their data.
235+ * @return array<string, mixed> an associative array of step names and their data
236236 */
237237 public function getAllData (): array
238238 {
@@ -265,30 +265,30 @@ public function resetForm(): void
265265 /**
266266 * Abstract method to retrieve the storage implementation.
267267 *
268- * @return StorageInterface The storage instance.
268+ * @return StorageInterface the storage instance
269269 */
270270 abstract protected function getStorage (): StorageInterface ;
271271
272272 /**
273273 * Abstract method to specify the form class for the component.
274274 *
275- * @return class-string<FormInterface> The form class name.
275+ * @return class-string<FormInterface> the form class name
276276 */
277277 abstract protected static function formClass (): string ;
278278
279279 /**
280280 * Abstract method to retrieve the form factory instance.
281281 *
282- * @return FormFactoryInterface The form factory.
282+ * @return FormFactoryInterface the form factory
283283 */
284284 abstract protected function getFormFactory (): FormFactoryInterface ;
285285
286286 /**
287287 * @internal
288288 *
289- * Instantiates the form for the current step.
289+ * Instantiates the form for the current step
290290 *
291- * @return FormInterface The form instance.
291+ * @return FormInterface the form instance
292292 */
293293 protected function instantiateForm (): FormInterface
294294 {
@@ -304,9 +304,9 @@ protected function instantiateForm(): FormInterface
304304 /**
305305 * @internal
306306 *
307- * Generates a unique prefix based on the component's class name.
307+ * Generates a unique prefix based on the component's class name
308308 *
309- * @return string The generated prefix in snake case.
309+ * @return string the generated prefix in snake case
310310 */
311311 private static function prefix (): string
312312 {
0 commit comments