mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 09:12:34 +01:00
17 lines
266 B
PHP
17 lines
266 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);
|
|
}
|