mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 01:32:22 +01:00
19 lines
319 B
PHP
19 lines
319 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\Builder;
|
|
|
|
use DesignPatterns\Creational\Builder\Parts\Vehicle;
|
|
|
|
interface BuilderInterface
|
|
{
|
|
public function createVehicle();
|
|
|
|
public function addWheel();
|
|
|
|
public function addEngine();
|
|
|
|
public function addDoors();
|
|
|
|
public function getVehicle(): Vehicle;
|
|
}
|