Abstract Factory

This commit is contained in:
2025-07-03 21:15:26 +03:00
parent 0f4618edf5
commit 7fe2402ff3
19 changed files with 376 additions and 115 deletions

View File

@@ -0,0 +1,21 @@
<?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...');
}
}