Files
DesignPatternsPHP/Structural/Adapter/EBook.php
2019-08-21 08:12:28 +02:00

18 lines
333 B
PHP

<?php declare(strict_types=1);
namespace DesignPatterns\Structural\Adapter;
interface EBook
{
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;
}