24 lines
309 B
PHP
Raw Normal View History

2013-05-11 20:54:21 +02:00
<?php
namespace DesignPatterns\Structural\Adapter;
2013-05-11 20:54:21 +02:00
/**
2015-12-21 07:28:20 -05:00
* Kindle is a concrete electronic book.
2013-05-11 20:54:21 +02:00
*/
2013-09-09 10:50:00 +02:00
class Kindle implements EBookInterface
2013-05-11 20:54:21 +02:00
{
2013-09-09 10:50:00 +02:00
/**
* {@inheritdoc}
*/
2013-05-11 20:54:21 +02:00
public function pressNext()
{
}
2013-09-09 10:50:00 +02:00
/**
* {@inheritdoc}
*/
2013-05-11 20:54:21 +02:00
public function pressStart()
{
2013-09-09 10:50:00 +02:00
}
}