22 lines
387 B
PHP
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...');
|
|
}
|
|
}
|