Total Complexity | 2 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace Pz\Doctrine\Rest\Action\Relationships; |
||
9 | class RelationshipsItemUpdateAction extends RestAction |
||
10 | { |
||
11 | use RelatedAction; |
||
12 | |||
13 | /** |
||
14 | * RelatedRestAction constructor. |
||
15 | * |
||
16 | * @param RestRepository $repository |
||
17 | * @param string $field |
||
18 | * @param RestRepository $related |
||
19 | * @param TransformerAbstract $transformer |
||
20 | */ |
||
21 | 2 | public function __construct(RestRepository $repository, $field, RestRepository $related, $transformer) |
|
26 | 2 | } |
|
27 | |||
28 | 2 | public function handle($request) |
|
50 |