enable Link Mobility php client v2 as dependency variant

This commit is contained in:
2022-07-20 11:57:58 +02:00
parent e159aaa3b0
commit 224057b807
4 changed files with 9 additions and 3 deletions

View File

@ -57,7 +57,9 @@ class OrderRecipients
}
}
throw oxNew(noRecipientFoundException::class);
/** @var noRecipientFoundException $exc */
$exc = oxNew(noRecipientFoundException::class);
throw $exc;
}
/**

View File

@ -57,7 +57,9 @@ class UserRecipients
}
}
throw oxNew(noRecipientFoundException::class);
/** @var noRecipientFoundException $exc */
$exc = oxNew(noRecipientFoundException::class);
throw $exc;
}
/**