1.7. Simple Factory
1.7.1. Purpose
SimpleFactory is a simple factory pattern.
It differs from the static factory because it is not static.Therefore, you can have multiple factories, differently parameterized, you can subclass it and you can mock it.It always should be preferred over a static factory!
1.7.2. UML Diagram
1.7.3. Code
You can also find this code on GitHub
SimpleFactory.php
- <?php
- namespace DesignPatterns\Creational\SimpleFactory;
- class SimpleFactory
- {
- public function createBicycle(): Bicycle
- {
- return new Bicycle();
- }
- }
Bicycle.php
- <?php
- namespace DesignPatterns\Creational\SimpleFactory;
- class Bicycle
- {
- public function driveTo(string $destination)
- {
- }
- }
1.7.4. Usage
- $factory = new SimpleFactory();
- $bicycle = $factory->createBicycle();
- $bicycle->driveTo('Paris');
1.7.5. Test
Tests/SimpleFactoryTest.php
- <?php
- namespace DesignPatterns\Creational\SimpleFactory\Tests;
- use DesignPatterns\Creational\SimpleFactory\Bicycle;
- use DesignPatterns\Creational\SimpleFactory\SimpleFactory;
- use PHPUnit\Framework\TestCase;
- class SimpleFactoryTest extends TestCase
- {
- public function testCanCreateBicycle()
- {
- $bicycle = (new SimpleFactory())->createBicycle();
- $this->assertInstanceOf(Bicycle::class, $bicycle);
- }
- }