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

20 lines
263 B
PHP

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