Describe the bug
getContact() and getContacts() both return an array of type "Contacts".
To Reproduce
//Hard-coding ID in "Demo Company (AU)" using XeroAPI/xero-php-oauth2
$xeroContactId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
$xeroContactV1 = $xeroAccountingAPI->getContact($xeroTenantId, $xeroContactId);
$xeroContactV2 = $xeroAccountingAPI->getContacts($xeroTenantId, $xeroContactId);
//both return an object of type XeroAPI\XeroPHP\Models\Accounting\Contacts
//to get a single XeroAPI\XeroPHP\Models\Accounting\Contact object you need to do one of the following
$xeroContactV3 = $xeroAccountingAPI->getContact($xeroTenantId, $xeroContactId)[0];
$xeroContactV4 = $xeroAccountingAPI->getContacts($xeroTenantId, $xeroContactId)[0];
Expected behavior
getContact() should return a single Contact
SDK
Describe the bug getContact() and getContacts() both return an array of type "Contacts".
To Reproduce
Expected behavior getContact() should return a single Contact