removed Interface-suffix

This commit is contained in:
Dominik Liebler
2019-08-21 08:12:28 +02:00
parent e02bcea33f
commit 2627aab1d1
9 changed files with 50 additions and 50 deletions

View File

@@ -0,0 +1,17 @@
<?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;
}