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