mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
18 lines
322 B
PHP
18 lines
322 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Behavioral\TemplateMethod;
|
|
|
|
/**
|
|
* CityJourney is a journey in a city
|
|
*/
|
|
class CityJourney extends Journey
|
|
{
|
|
/**
|
|
* prints what to do in your journey to enjoy vacation
|
|
*/
|
|
protected function enjoyVacation()
|
|
{
|
|
echo "Eat, drink, take photos and sleep\n";
|
|
}
|
|
}
|