mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
14 lines
188 B
PHP
14 lines
188 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Adapter;
|
|
|
|
/**
|
|
* EBookInterface is a contract for an electronic book
|
|
*/
|
|
interface EBookInterface
|
|
{
|
|
|
|
function pressNext();
|
|
|
|
function pressStart();
|
|
} |