MySQL pab driver implementation (part 4)

This commit is contained in:
RainLoop Team 2013-12-04 02:50:01 +04:00
parent ad708be88a
commit 3a4867abea
7 changed files with 255 additions and 86 deletions

View file

@ -9,11 +9,6 @@ class Contact
*/
public $IdContact;
/**
* @var int
*/
public $IdUser;
/**
* @var string
*/
@ -66,7 +61,7 @@ class Contact
$sDisplayName = '';
$sDisplayEmail = '';
foreach ($this->Properties as /* @var $oProperty \RainLoop\Providers\PersonalAddressBook\Classes\Property */ $oProperty)
foreach ($this->Properties as /* @var $oProperty \RainLoop\Providers\PersonalAddressBook\Classes\Property */ &$oProperty)
{
if ($oProperty)
{

View file

@ -6,21 +6,6 @@ use RainLoop\Providers\PersonalAddressBook\Enumerations\PropertyType;
class Property
{
/**
* @var int
*/
public $IdProperty;
/**
* @var int
*/
public $IdContact;
/**
* @var int
*/
public $IdUser;
/**
* @var int
*/
@ -53,10 +38,6 @@ class Property
public function Clear()
{
$this->IdProperty = 0;
$this->IdContact = 0;
$this->IdUser = 0;
$this->Type = PropertyType::UNKNOWN;
$this->TypeCustom = '';