Files
DesignPatternsPHP/Creational/SimpleFactory/Usage/SimpleFactoryUsage.php
Nikita Strelkov f862fba24e Move usage code exaple to single file and correctly include it
This make code more structured and fix code highlighting problem
2016-10-03 06:25:33 +05:00

10 lines
223 B
PHP

<?php
namespace DesignPatterns\Creational\SimpleFactory\Usage;
use DesignPatterns\Creational\SimpleFactory\SimpleFactory;
$factory = new SimpleFactory();
$bicycle = $factory->createBicycle();
$bicycle->driveTo('Paris');