16 lines
174 B
PHP
Raw Normal View History

2013-05-10 21:09:55 +02:00
<?php
/*
* DesignPatternPHP
*/
namespace DesignPatterns\FactoryMethod;
/**
* Vehicle is a contract for a vehicle
*/
interface Vehicle
{
function setColor($rgb);
}