mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-25 01:01:19 +02:00
17 lines
268 B
PHP
17 lines
268 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Decorator;
|
|
|
|
abstract class BookingDecorator implements Booking
|
|
{
|
|
/**
|
|
* @var Booking
|
|
*/
|
|
protected $booking;
|
|
|
|
public function __construct(Booking $booking)
|
|
{
|
|
$this->booking = $booking;
|
|
}
|
|
}
|