mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
13 lines
179 B
PHP
13 lines
179 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Adapter;
|
|
|
|
interface BookInterface
|
|
{
|
|
public function turnPage();
|
|
|
|
public function open();
|
|
|
|
public function getPage(): int;
|
|
}
|