DesignPatternsPHP/Structural/Adapter/EBookInterface.php
2015-12-21 07:28:20 -05:00

24 lines
349 B
PHP

<?php
namespace DesignPatterns\Structural\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();
}