12 lines
170 B
PHP
Raw Normal View History

2013-05-10 20:22:43 +02:00
<?php
namespace DesignPatterns\Creational\SimpleFactory;
2013-05-10 20:22:43 +02:00
class SimpleFactory
2013-05-10 20:22:43 +02:00
{
2016-09-22 15:05:25 +02:00
public function createBicycle(): Bicycle
2013-05-10 20:22:43 +02:00
{
2016-09-22 15:05:25 +02:00
return new Bicycle();
2013-05-10 20:22:43 +02:00
}
2013-09-13 12:00:39 +02:00
}