Files
DesignPatternsPHP/Creational/FactoryMethod/CarMercedes.php
Dominik Liebler 4760d898a0 PHP7 FactoryMethod
2016-09-22 13:28:46 +02:00

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
}
}