mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-06 22:45:27 +02:00
24 lines
309 B
PHP
24 lines
309 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Adapter;
|
|
|
|
/**
|
|
* Book is a concrete and standard paper book
|
|
*/
|
|
class Book implements PaperBookInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function open()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function turnPage()
|
|
{
|
|
}
|
|
}
|