mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 05:51:46 +02:00
24 lines
347 B
PHP
24 lines
347 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\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;
|
|
}
|
|
}
|