mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-10-03 09:42:31 +02:00
8 lines
116 B
PHP
8 lines
116 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\Builder\Parts;
|
|
|
|
class Truck extends Vehicle
|
|
{
|
|
}
|