mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 09:12:34 +01:00
25 lines
357 B
PHP
25 lines
357 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\FactoryMethod;
|
|
|
|
/**
|
|
* Bicycle is a bicycle
|
|
*/
|
|
class Bicycle implements VehicleInterface
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $color;
|
|
|
|
/**
|
|
* sets the color of the bicycle
|
|
*
|
|
* @param string $rgb
|
|
*/
|
|
public function setColor($rgb)
|
|
{
|
|
$this->color = $rgb;
|
|
}
|
|
}
|