Files
DesignPatternsPHP/Behavioral/TemplateMethod/CityJourney.php
2015-12-21 07:28:20 -05:00

18 lines
324 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";
}
}