2013-09-12 11:27:29 +02:00

18 lines
311 B
PHP

<?php
namespace DesignPatterns\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";
}
}