Files
DesignPatternsPHP/Structural/Adapter/EBookInterface.php
2019-08-19 18:11:49 +02:00

18 lines
342 B
PHP

<?php declare(strict_types=1);
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;
}