17 lines
268 B
PHP

<?php
namespace DesignPatterns\Creational\FactoryMethod;
/**
* VehicleInterface is a contract for a vehicle
*/
interface VehicleInterface
{
/**
* sets the color of the vehicle
*
* @param string $rgb
*/
public function setColor($rgb);
}