DesignPatternsPHP/Adapter/EBookInterface.php
Dominik Liebler f6651bafaa cs
2013-09-21 22:25:20 +02:00

24 lines
335 B
PHP

<?php
namespace DesignPatterns\Adapter;
/**
* EBookInterface is a contract for an electronic book
*/
interface EBookInterface
{
/**
* go to next page
*
* @return mixed
*/
public function pressNext();
/**
* start the book
*
* @return mixed
*/
public function pressStart();
}