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