17 lines
266 B
PHP
Raw Normal View History

2013-09-13 11:47:46 +02:00
<?php
namespace DesignPatterns\Creational\SimpleFactory;
2013-09-13 11:47:46 +02:00
/**
* VehicleInterface is a contract for a vehicle
*/
interface VehicleInterface
{
/**
* @param mixed $destination
*
* @return mixed
*/
public function driveTo($destination);
}