Files
DesignPatternsPHP/Structural/Decorator/BookingDecorator.php
2019-12-14 13:41:03 +01:00

14 lines
265 B
PHP

<?php declare(strict_types=1);
namespace DesignPatterns\Structural\Decorator;
abstract class BookingDecorator implements Booking
{
protected Booking $booking;
public function __construct(Booking $booking)
{
$this->booking = $booking;
}
}