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