mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 09:12:34 +01:00
35 lines
452 B
PHP
35 lines
452 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();
|
|
}
|