Created
January 10, 2019 09:34
-
-
Save Zayon/4b36451d4156dd33366cc8b8c0a4d698 to your computer and use it in GitHub Desktop.
Fixtures - AddProductAction Step 1
This file contains hidden or 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\Action; | |
| use Symfony\Component\HttpFoundation\Request; | |
| class AddProductAction | |
| { | |
| public function __invoke(Request $request) | |
| { | |
| throw new \Exception('Not implemented yet'); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment