enable Link Mobility php client v2 as dependency variant
This commit is contained in:
@ -57,7 +57,9 @@ class OrderRecipients
|
||||
}
|
||||
}
|
||||
|
||||
throw oxNew(noRecipientFoundException::class);
|
||||
/** @var noRecipientFoundException $exc */
|
||||
$exc = oxNew(noRecipientFoundException::class);
|
||||
throw $exc;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -57,7 +57,9 @@ class UserRecipients
|
||||
}
|
||||
}
|
||||
|
||||
throw oxNew(noRecipientFoundException::class);
|
||||
/** @var noRecipientFoundException $exc */
|
||||
$exc = oxNew(noRecipientFoundException::class);
|
||||
throw $exc;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user