Skip to content

Instantly share code, notes, and snippets.

@mdzwigala
Created December 5, 2020 23:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdzwigala/4772d93932ff61120e251c59ecf04e4e to your computer and use it in GitHub Desktop.
Save mdzwigala/4772d93932ff61120e251c59ecf04e4e to your computer and use it in GitHub Desktop.
ADR-EXAMPLE\Infrastructure\InputFactoryProvider
<?php
declare(strict_types=1);
namespace App\Infrastructure\ParamConverter\InputFactory;
interface InputFactoryProvider
{
public function getFactory(string $className): InputFactory;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment