mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-12 09:54:09 +02:00
remove Interface-Suffix
This commit is contained in:
19
Creational/Builder/Builder.php
Normal file
19
Creational/Builder/Builder.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace DesignPatterns\Creational\Builder;
|
||||
|
||||
use DesignPatterns\Creational\Builder\Parts\Vehicle;
|
||||
|
||||
interface Builder
|
||||
{
|
||||
public function createVehicle();
|
||||
|
||||
public function addWheel();
|
||||
|
||||
public function addEngine();
|
||||
|
||||
public function addDoors();
|
||||
|
||||
public function getVehicle(): Vehicle;
|
||||
}
|
Reference in New Issue
Block a user