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

18 lines
308 B
PHP

<?php
namespace DesignPatterns\Behavioral\TemplateMethod;
/**
* BeachJourney is vacation at the beach.
*/
class BeachJourney extends Journey
{
/**
* prints what to do to enjoy your vacation.
*/
protected function enjoyVacation()
{
echo "Swimming and sun-bathing\n";
}
}