Trajedy

PHP Developer, Drupal consultant

				<?php
					class JamesEdmonds extends PHPDeveloper {
						
						public $name;
						public $location;
						public $contact_details;
						
						function __construct() {
							$this->name = 'James Edmonds';
							$this->location = 'Adelaide, South Australia';
							$this->contact_details = array(
								'email' => 'james@trajedy.com.au',
								'mobile' => '0402 834 991',
							);
						}
						
						function contact() {
							return $this->contact_details;
						}
					}
				?>