Skip to content

Instantly share code, notes, and snippets.

@Zayon
Created January 10, 2019 09:34
Show Gist options
  • Save Zayon/4b36451d4156dd33366cc8b8c0a4d698 to your computer and use it in GitHub Desktop.
Save Zayon/4b36451d4156dd33366cc8b8c0a4d698 to your computer and use it in GitHub Desktop.
Fixtures - AddProductAction Step 1
<?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