17 lines
240 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
/**
* Scooter is a Scooter
*/
2013-09-13 11:47:46 +02:00
class Scooter implements VehicleInterface
2013-05-10 20:22:43 +02:00
{
2013-09-13 11:47:46 +02:00
/**
* @param mixed $destination
*/
2013-05-10 20:22:43 +02:00
public function driveTo($destination)
{
2013-09-13 11:47:46 +02:00
}
}