mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 01:02:25 +01:00
17 lines
244 B
PHP
17 lines
244 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\FactoryMethod;
|
|
|
|
class Bicycle implements VehicleInterface
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $color;
|
|
|
|
public function setColor(string $rgb)
|
|
{
|
|
$this->color = $rgb;
|
|
}
|
|
}
|