mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-23 08:11:17 +02:00
14 lines
204 B
PHP
14 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;
|
|
}
|