mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 22:09:23 +02:00
12 lines
163 B
PHP
12 lines
163 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\SimpleFactory;
|
|
|
|
class Bicycle
|
|
{
|
|
public function driveTo(string $destination)
|
|
{
|
|
}
|
|
}
|