mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-29 09:59:28 +02:00
18 lines
205 B
PHP
18 lines
205 B
PHP
<?php
|
|
|
|
/*
|
|
* DesignPatternPHP
|
|
*/
|
|
|
|
namespace DesignPatterns\Adapter;
|
|
|
|
/**
|
|
* PaperBookInterface is a contract for a book
|
|
*/
|
|
interface PaperBookInterface
|
|
{
|
|
|
|
function turnPage();
|
|
|
|
function open();
|
|
} |