mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-24 21:41:38 +02:00
24 lines
359 B
PHP
24 lines
359 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\Builder\Parts;
|
|
|
|
/**
|
|
* VehicleInterface is a contract for a vehicle.
|
|
*/
|
|
abstract class Vehicle
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $data;
|
|
|
|
/**
|
|
* @param string $key
|
|
* @param mixed $value
|
|
*/
|
|
public function setPart($key, $value)
|
|
{
|
|
$this->data[$key] = $value;
|
|
}
|
|
}
|