Files
DesignPatternsPHP/Creational/FactoryMethod/Bicycle.php
Kalinin Alexandr add59b3cd8 Update Bicycle.php
2016-06-22 15:58:55 +04: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;
}
}