-
-
Save mdzwigala/03114ce08dd15e038e00fe0d78938efd to your computer and use it in GitHub Desktop.
ADR-EXAMPLE\Infrastructure\InputFactory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace App\Infrastructure\ParamConverter\InputFactory; | |
use Symfony\Component\HttpFoundation\Request; | |
interface InputFactory | |
{ | |
public function createFromRequest(Request $request): object; | |
public static function supportedInput(): string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment