mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-20 05:19:40 +02:00
18 lines
230 B
PHP
18 lines
230 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\SimpleFactory;
|
|
|
|
/**
|
|
* Scooter is a Scooter
|
|
*/
|
|
class Scooter implements VehicleInterface
|
|
{
|
|
/**
|
|
* @param mixed $destination
|
|
*/
|
|
public function driveTo($destination)
|
|
{
|
|
|
|
}
|
|
}
|