address.php 330 Bytes
<?php
/**
 * @property int id
 * @property string name
 * @property string phone
 * @property string address
 * @property string email
 * @property int country_id
 * @property string country
 * @property int city_id
 * @property string city
 */
class Flora_Validation_User_Address
{
    public $country_id;
    public $city_id;
}