Files
DesignPatternsPHP/Behavioral/TemplateMethod/CityJourney.php
2016-09-22 11:15:18 +02:00

17 lines
292 B
PHP

<?php
namespace DesignPatterns\Behavioral\TemplateMethod;
class CityJourney extends Journey
{
protected function enjoyVacation(): string
{
return "Eat, drink, take photos and sleep";
}
protected function buyGift(): string
{
return "Buy a gift";
}
}