mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-14 18:35:42 +02:00
18 lines
317 B
PHP
18 lines
317 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Adapter;
|
|
|
|
interface EBookInterface
|
|
{
|
|
public function unlock();
|
|
|
|
public function pressNext();
|
|
|
|
/**
|
|
* returns current page and total number of pages, like [10, 100] is page 10 of 100
|
|
*
|
|
* @return int[]
|
|
*/
|
|
public function getPage(): array;
|
|
}
|