2013-09-11 16:35:18 +02:00

17 lines
232 B
PHP

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