design-patterns/src/Pattern/Creational/AbstractFactory/MeestPackage.php
2025-07-03 23:46:08 +03:00

22 lines
387 B
PHP

<?php
/**
* @package: patterns
* @author: Yevhen Odynets
* @date: 2025-07-03
* @time: 20:00
*/
declare(strict_types = 1);
namespace Pattern\Creational\AbstractFactory;
class MeestPackage implements PackageInterface
{
public function getConsist(): void
{
/** @noinspection ForgottenDebugOutputInspection */
dump('Checking package from Meest...');
}
}