Logo white

Peter M. Groen / knowledgetree

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • knowledgetree
  • webservice
  • classes
  • soap
  • model
  • address.class.php
  • Reset mode to 644 ...
    95b34c8b
    Committed by: Megan Watson
    Reviewed by: JP Bauer
    Megan Watson authored
    2010-03-08 14:15:46 +0200  
    Browse Code ยป
address.class.php 368 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?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;	
}
?>