Files
DesignPatternsPHP/Creational/SimpleFactory/Bicycle.php
2015-12-21 07:28:20 -05:00

19 lines
274 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)
{
}
}