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