mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-22 07:41:15 +02:00
12 lines
195 B
PHP
12 lines
195 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\SimpleFactory;
|
|
|
|
class SimpleFactory
|
|
{
|
|
public function createBicycle(): Bicycle
|
|
{
|
|
return new Bicycle();
|
|
}
|
|
}
|