This commit is contained in:
Dominik Liebler
2013-09-21 22:25:20 +02:00
parent 9484868299
commit f6651bafaa
9 changed files with 56 additions and 173 deletions

View File

@@ -7,7 +7,17 @@ namespace DesignPatterns\Adapter;
*/
interface EBookInterface
{
function pressNext();
/**
* go to next page
*
* @return mixed
*/
public function pressNext();
function pressStart();
}
/**
* start the book
*
* @return mixed
*/
public function pressStart();
}