DesignPatternsPHP/Creational/Prototype/BarBookPrototype.php
2016-09-22 14:56:44 +02:00

16 lines
215 B
PHP

<?php
namespace DesignPatterns\Creational\Prototype;
class BarBookPrototype extends BookPrototype
{
/**
* @var string
*/
protected $category = 'Bar';
public function __clone()
{
}
}