mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-06 22:45:27 +02:00
17 lines
268 B
PHP
17 lines
268 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);
|
|
}
|