-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateProduct.php
43 lines (37 loc) · 1008 Bytes
/
CreateProduct.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
namespace Bamiz\ScreamingWebshop;
use Bamiz\ScreamingWebshop\Entity\ProductFactory;
use Bamiz\UseCaseBundle\Annotation\InputProcessor;
use Bamiz\UseCaseBundle\Annotation\ResponseProcessor;
use Bamiz\UseCaseBundle\Annotation\UseCase;
/**
* @UseCase()
* @InputProcessor("http")
* @ResponseProcessor("json")
*/
class CreateProduct
{
/**
* @var ProductFactory
*/
private $productFactory;
/**
* @param ProductFactory $productFactory
*/
public function __construct(ProductFactory $productFactory)
{
$this->productFactory = $productFactory;
}
/**
* @param CreateProductRequest $request
*
* @return CreateProductResponse
*/
public function execute(CreateProductRequest $request): CreateProductResponse
{
$product = $this->productFactory->createProduct($request->name, $request->price);
$response = new CreateProductResponse();
$response->product = $product;
return $response;
}
}