mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-02 22:22:57 +02:00
17 lines
263 B
PHP
17 lines
263 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Decorator;
|
|
|
|
class DoubleRoomBooking implements Booking
|
|
{
|
|
public function calculatePrice(): int
|
|
{
|
|
return 40;
|
|
}
|
|
|
|
public function getDescription(): string
|
|
{
|
|
return 'double room';
|
|
}
|
|
}
|