mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-24 21:41:38 +02:00
12 lines
106 B
PHP
12 lines
106 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Builder\Parts;
|
|
|
|
/**
|
|
* Bike is a bike
|
|
*/
|
|
class Bike extends Vehicle
|
|
{
|
|
|
|
}
|