mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-08 06:55:10 +02:00
15 lines
196 B
PHP
15 lines
196 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Adapter;
|
|
|
|
interface Book
|
|
{
|
|
public function turnPage();
|
|
|
|
public function open();
|
|
|
|
public function getPage(): int;
|
|
}
|