| Total Complexity | 2 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 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 | 1 | public function __construct(RestRepository $repository, $field, RestRepository $related, $transformer) |
|
| 26 | 1 | } |
|
| 27 | |||
| 28 | 1 | public function handle($request) |
|
| 50 |