mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-11 00:11:16 +02:00
13 lines
193 B
PHP
13 lines
193 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Decorator;
|
|
|
|
interface Booking
|
|
{
|
|
public function calculatePrice(): int;
|
|
|
|
public function getDescription(): string;
|
|
}
|