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

19 lines
273 B
PHP

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