mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-13 18:05:36 +02:00
26 lines
310 B
PHP
26 lines
310 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()
|
|
{
|
|
|
|
}
|
|
}
|