DesignPatternsPHP/SimpleFactory/VehicleInterface.php
2013-09-13 11:47:46 +02:00

17 lines
255 B
PHP

<?php
namespace DesignPatterns\SimpleFactory;
/**
* VehicleInterface is a contract for a vehicle
*/
interface VehicleInterface
{
/**
* @param mixed $destination
*
* @return mixed
*/
public function driveTo($destination);
}