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