Files
DesignPatternsPHP/Behavioral/TemplateMethod/BeachJourney.php
2019-08-17 21:58:04 +02:00

13 lines
226 B
PHP

<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\TemplateMethod;
class BeachJourney extends Journey
{
protected function enjoyVacation(): string
{
return "Swimming and sun-bathing";
}
}