2019-08-19 18:11:49 +02:00

11 lines
192 B
PHP

<?php declare(strict_types=1);
namespace DesignPatterns\Structural\Decorator;
interface Booking
{
public function calculatePrice(): int;
public function getDescription(): string;
}