mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-25 01:01:19 +02:00
19 lines
251 B
PHP
19 lines
251 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\Prototype;
|
|
|
|
/**
|
|
* Class FooBookPrototype.
|
|
*/
|
|
class FooBookPrototype extends BookPrototype
|
|
{
|
|
protected $category = 'Foo';
|
|
|
|
/**
|
|
* empty clone.
|
|
*/
|
|
public function __clone()
|
|
{
|
|
}
|
|
}
|