Abstract Factory
This commit is contained in:
21
src/Pattern/Creational/AbstractFactory/MeestPackage.php
Normal file
21
src/Pattern/Creational/AbstractFactory/MeestPackage.php
Normal 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...');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user