mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-28 01:19:36 +02:00
27 lines
291 B
PHP
27 lines
291 B
PHP
<?php
|
|
|
|
/*
|
|
* DesignPatternPHP
|
|
*/
|
|
|
|
namespace DesignPatterns\Adapter;
|
|
|
|
/**
|
|
* Kindle is a concrete electronic book
|
|
*
|
|
* @author flo
|
|
*/
|
|
class Kindle implements ElecBookInterface
|
|
{
|
|
|
|
public function pressNext()
|
|
{
|
|
|
|
}
|
|
|
|
public function pressStart()
|
|
{
|
|
|
|
}
|
|
|
|
} |