mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
20 lines
263 B
PHP
20 lines
263 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\SimpleFactory;
|
|
|
|
/**
|
|
* Bicycle is a bicycle
|
|
*/
|
|
class Bicycle implements VehicleInterface
|
|
{
|
|
/**
|
|
* @param mixed $destination
|
|
*
|
|
* @return mixed|void
|
|
*/
|
|
public function driveTo($destination)
|
|
{
|
|
|
|
}
|
|
}
|