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