mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
16 lines
215 B
PHP
16 lines
215 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\Prototype;
|
|
|
|
class BarBookPrototype extends BookPrototype
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $category = 'Bar';
|
|
|
|
public function __clone()
|
|
{
|
|
}
|
|
}
|