20 lines
274 B
PHP
Raw Normal View History

2013-05-10 20:22:43 +02:00
<?php
namespace DesignPatterns\Creational\SimpleFactory;
2013-05-10 20:22:43 +02:00
/**
* Bicycle is a bicycle
*/
2013-09-13 11:47:46 +02:00
class Bicycle implements VehicleInterface
2013-05-10 20:22:43 +02:00
{
2013-09-13 12:00:39 +02:00
/**
* @param mixed $destination
*
* @return mixed|void
*/
2013-05-10 20:22:43 +02:00
public function driveTo($destination)
{
2013-09-13 12:00:39 +02:00
}
}