mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-26 19:23:33 +02:00
11 lines
167 B
PHP
11 lines
167 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Decorator;
|
|
|
|
interface Booking
|
|
{
|
|
public function calculatePrice(): int;
|
|
|
|
public function getDescription(): string;
|
|
}
|