mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-10 17:04:01 +02:00
10 lines
117 B
PHP
10 lines
117 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\Builder\Parts;
|
|
|
|
class Truck extends Vehicle
|
|
{
|
|
}
|