mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 05:51:46 +02:00
11 lines
117 B
PHP
11 lines
117 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\Builder\Parts;
|
|
|
|
/**
|
|
* Bike is a bike.
|
|
*/
|
|
class Bike extends Vehicle
|
|
{
|
|
}
|