2015-03-27 12:19:20 +01:00

31 lines
487 B
PHP

<?php
namespace DesignPatterns\Creational\FactoryMethod;
/**
* Porsche is a german car
*/
class Porsche implements VehicleInterface
{
/**
* @var string
*/
protected $color;
/**
* @param string $rgb
*/
public function setColor($rgb)
{
$this->color = $rgb;
}
/**
* although tuning by AMG is only offered for Mercedes Cars,
* this is a valid coding example ...
*/
public function addTuningAMG()
{
}
}