mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 01:32:22 +01:00
24 lines
346 B
PHP
24 lines
346 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();
|
|
}
|