mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
16 lines
181 B
PHP
16 lines
181 B
PHP
<?php
|
|
|
|
/*
|
|
* DesignPatternPHP
|
|
*/
|
|
|
|
namespace DesignPatterns\SimpleFactory;
|
|
|
|
/**
|
|
* Vehicle is a contract for a vehicle
|
|
*/
|
|
interface Vehicle
|
|
{
|
|
|
|
function driveTo($destination);
|
|
} |