Files
DesignPatternsPHP/Structural/Adapter/EBookInterface.php
2019-08-17 21:58:04 +02:00

19 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;
}