17 lines
232 B
PHP
Raw Normal View History

2013-05-10 21:09:55 +02:00
<?php
namespace DesignPatterns\FactoryMethod;
/**
* Vehicle is a contract for a vehicle
*/
interface Vehicle
{
2013-09-11 16:35:18 +02:00
/**
* sets the color of the vehicle
*
* @param string $rgb
*/
2013-05-10 21:09:55 +02:00
function setColor($rgb);
2013-09-11 16:35:18 +02:00
}