Files
DesignPatternsPHP/Structural/Adapter/PaperBookInterface.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03:00

24 lines
338 B
PHP

<?php
namespace DesignPatterns\Adapter;
/**
* PaperBookInterface is a contract for a book
*/
interface PaperBookInterface
{
/**
* method to turn pages
*
* @return mixed
*/
public function turnPage();
/**
* method to open the book
*
* @return mixed
*/
public function open();
}