Skip to content
This repository has been archived by the owner on Feb 6, 2022. It is now read-only.

Commit

Permalink
added UserInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
elnebuloso committed Nov 21, 2014
1 parent fc35941 commit 1725b50
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 2.2.0

- added UserInterface

## 2.1.0

- added Collection from flex-data
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.2.0
60 changes: 60 additions & 0 deletions src/Flex/UserInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?php
namespace Flex;

/**
* Class UserInterface
*
* @author Jeff Tunessen <jeff.tunessen@gmail.com>
*/
interface UserInterface {

/**
* @return string
*/
public function getFirstname();

/**
* @return string
*/
public function getLastname();

/**
* @return string
*/
public function getEmail();

/**
* @return \DateTime
*/
public function getBirthdate();

/**
* @return string
*/
public function getStreet();

/**
* @return string
*/
public function getStreetNumber();

/**
* @return string
*/
public function getZipcode();

/**
* @return string
*/
public function getCity();

/**
* @return string
*/
public function getCountryCode();

/**
* @return string
*/
public function getCountryName();
}

0 comments on commit 1725b50

Please sign in to comment.