mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-10-03 17:52:06 +02:00
9 lines
133 B
PHP
9 lines
133 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\FactoryMethod;
|
|
|
|
interface VehicleInterface
|
|
{
|
|
public function setColor(string $rgb);
|
|
}
|