mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-28 20:23:34 +02:00
9 lines
131 B
PHP
9 lines
131 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\AbstractFactory;
|
|
|
|
interface Parser
|
|
{
|
|
public function parse(string $input): array;
|
|
}
|