mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 13:59:08 +02:00
32 lines
441 B
PHP
32 lines
441 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\Builder;
|
|
|
|
interface BuilderInterface
|
|
{
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function createVehicle();
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function addWheel();
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function addEngine();
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function addDoors();
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getVehicle();
|
|
}
|