mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-10 01:46:22 +02:00
13 lines
208 B
PHP
13 lines
208 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Decorator;
|
|
|
|
abstract class BookingDecorator implements Booking
|
|
{
|
|
public function __construct(protected Booking $booking)
|
|
{
|
|
}
|
|
}
|