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