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

17 lines
267 B
PHP

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