mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-25 02:02:26 +01:00
17 lines
255 B
PHP
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);
|
||
|
}
|