mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-21 08:47:37 +02:00
24 lines
309 B
PHP
24 lines
309 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Adapter;
|
|
|
|
/**
|
|
* Kindle is a concrete electronic book.
|
|
*/
|
|
class Kindle implements EBookInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function pressNext()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function pressStart()
|
|
{
|
|
}
|
|
}
|