mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-26 00:10:12 +02:00
18 lines
222 B
PHP
18 lines
222 B
PHP
<?php
|
|
|
|
/*
|
|
* DesignPatternPHP
|
|
*/
|
|
|
|
namespace DesignPatterns\Adapter;
|
|
|
|
/**
|
|
* ElecBookInterface is a contract for an electronic book
|
|
*/
|
|
interface ElecBookInterface
|
|
{
|
|
|
|
function pressNext();
|
|
|
|
function pressStart();
|
|
} |