2015-12-21 07:28:20 -05:00

25 lines
359 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;
}
}