2015-03-27 12:19:20 +01:00

17 lines
240 B
PHP

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