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