2015-03-27 12:19:20 +01:00

24 lines
308 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()
{
}
}