Files
DesignPatternsPHP/Creational/SimpleFactory/Scooter.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03:00

18 lines
230 B
PHP

<?php
namespace DesignPatterns\SimpleFactory;
/**
* Scooter is a Scooter
*/
class Scooter implements VehicleInterface
{
/**
* @param mixed $destination
*/
public function driveTo($destination)
{
}
}