mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-28 18:50:11 +02:00
16 lines
240 B
PHP
16 lines
240 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\Prototype;
|
|
|
|
class BarBookPrototype extends BookPrototype
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $category = 'Bar';
|
|
|
|
public function __clone()
|
|
{
|
|
}
|
|
}
|