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