Prevent creating client without contacts

This commit is contained in:
Hillel Coren 2017-05-26 11:03:17 +03:00
parent b0ce52be4d
commit ec1dca1970

View File

@ -116,7 +116,7 @@ class ClientRepository extends BaseRepository
*/
$first = true;
$contacts = isset($data['contact']) ? [$data['contact']] : $data['contacts'];
$contacts = isset($data['contact']) ? [$data['contact']] : isset($data['contacts']) ? $data['contacts'] : [[]];
$contactIds = [];
// If the primary is set ensure it's listed first