mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
13 lines
195 B
PHP
13 lines
195 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Adapter;
|
|
|
|
interface Book
|
|
{
|
|
public function turnPage();
|
|
|
|
public function open();
|
|
|
|
public function getPage(): int;
|
|
}
|