Files
DesignPatternsPHP/Creational/FactoryMethod/VehicleInterface.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03:00

17 lines
257 B
PHP

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