Hi Julien,
I'm still on the fence, not sure if it isn’t too opaque.
Am 26.04.2013 um 16:41 schrieb Julien Pauli <[email protected]>:
[...]
One question regarding scoping: does the next statement inherit the scope of the catch block like
this?
try {
$user = $repository->findById(123);
$user->setName($name);
$em->save($user);
return true;
} catch (NotFoundException $e) {
$user = new User();
continue;
} catch (ValidationException $e) {
$user->setName($this->stripInvalidChars($name));
continue;
} catch (PersistenceException $e) {
return false;
}
cu,
Lars