address.class.php
368 Bytes
<?php
/**
* Stores an address
*
* An address consists of a street, number, zipcode and city.
* This class is for example purposes only, just to
* show how to create a webservice
*
*/
class address{
/** @var string */
public $street;
/** @var string */
public $nr;
/** @var string */
public $zipcode;
/** @var string */
public $city;
}
?>