DesignPatternsPHP/Structural/Adapter/EBookInterface.php
Dominik Liebler d151e309c5 PHP7 Adapter
2016-09-22 20:09:07 +02:00

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