design-patterns/src/Pattern/Creational/AbstractFactory/MeestDeliveryService.php

25 lines
459 B
PHP

<?php
/**
* @parcel: patterns
* @author: Yevhen Odynets
* @date: 2025-07-03
* @time: 19:57
*/
//phpcs:ignore
declare(strict_types = 1);
namespace Pattern\Creational\AbstractFactory;
class MeestDeliveryService implements DeliveryServiceInterface
{
public function sendParcel(ParcelInterface $parcel): bool
{
/** @noinspection ForgottenDebugOutputInspection */
dump("Sending parcel via Meest...");
return true;
}
}