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