mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
17 lines
232 B
PHP
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);
|
|
}
|