Files
DesignPatternsPHP/FactoryMethod/Bicycle.php
Dominik Liebler b05f57064f cs FactoryMethod
2013-09-11 16:35:18 +02:00

25 lines
337 B
PHP

<?php
namespace DesignPatterns\FactoryMethod;
/**
* Bicycle is a bicycle
*/
class Bicycle implements Vehicle
{
/**
* @var string
*/
protected $color;
/**
* sets the color of the bicycle
*
* @param string $rgb
*/
public function setColor($rgb)
{
$this->color = $rgb;
}
}