mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-07 23:46:52 +02:00
10 lines
115 B
PHP
10 lines
115 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\Builder\Parts;
|
|
|
|
class Car extends Vehicle
|
|
{
|
|
}
|