mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-09 07:24:55 +02:00
15 lines
213 B
PHP
15 lines
213 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\Prototype;
|
|
|
|
class BarBookPrototype extends BookPrototype
|
|
{
|
|
protected string $category = 'Bar';
|
|
|
|
public function __clone()
|
|
{
|
|
}
|
|
}
|