Files
DesignPatternsPHP/Structural/Adapter/Kindle.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03:00

26 lines
299 B
PHP

<?php
namespace DesignPatterns\Adapter;
/**
* Kindle is a concrete electronic book
*/
class Kindle implements EBookInterface
{
/**
* {@inheritdoc}
*/
public function pressNext()
{
}
/**
* {@inheritdoc}
*/
public function pressStart()
{
}
}