mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-29 11:10:19 +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;
|
|
}
|