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