Throw exceptions instead of returning tuples for validation errors

Created on 3 January 2025, 3 months ago

Overview

In the case of validation errors we return sets of violations and check their counts:

    [$tree, $props, $violations] = $this->convertClientToServer($layout, $model);
    if ($violations->count() > 0) {
      return new EntityConstraintViolationList($entity, iterator_to_array($violations));
    }
    [$props, $violations] = $this->clientModelToServerProps($tree, $model);
    if ($violations->count() > 0) {
      return [NULL, NULL, $violations];
    }

etc.

This feels a bit too much Go and not enough like PHP - we have exceptions, we can throw those in the case of error.

Proposed resolution

Add an exception wrapper around ConstraintViolationList and throw it when we detect violations, catch it in the correct places, and only handle the success case everywhere else.

User interface changes

None

πŸ“Œ Task
Status

Active

Version

0.0

Component

Code

Created by

πŸ‡¬πŸ‡§United Kingdom longwave UK

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024