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