Files
DesignPatternsPHP/Creational/FactoryMethod/VehicleInterface.php
2015-12-21 07:28:20 -05:00

17 lines
270 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);
}