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