mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-11 01:14:01 +02:00
start a restructure
This commit is contained in:
22
Creational/Prototype/BarBookPrototype.php
Normal file
22
Creational/Prototype/BarBookPrototype.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace DesignPatterns\Prototype;
|
||||
|
||||
/**
|
||||
* Class BarBookPrototype
|
||||
*/
|
||||
class BarBookPrototype extends BookPrototype
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $category = 'Bar';
|
||||
|
||||
/**
|
||||
* empty clone
|
||||
*/
|
||||
public function __clone()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user