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