Skip to content

Instantly share code, notes, and snippets.

@azcdev
Last active December 31, 2015 11:29
Show Gist options
  • Save azcdev/7979988 to your computer and use it in GitHub Desktop.
Save azcdev/7979988 to your computer and use it in GitHub Desktop.
Cliente de la Factory en PHP
<?php
$camioneta = CarrosFactory::crearCarro(MOTOR::DIESEL, 8);
$sedan = CarrosFactory::crearCarro(MOTOR::GASOLINA, 4);
$autobus = CarrosFactory::crearCarro(MOTOR::DIESEL, 8);
$hibrido = CarrosFactory::crearCarro(MOTOR::BIODIESEL, 4);
$camioneta->enciende();
$sedan->enciende();
$autobus->enciende();
$hibrido->enciende();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment