Completed
Push — master ( 5895ce...415b34 )
by Thomas
08:36
created

LanguageVariantListJsonResponder   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 39
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 11

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 11
dl 0
loc 39
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
B found() 0 24 1
A getPayloadMethods() 0 5 1
1
<?php
2
namespace keeko\core\responder;
3
4
use Symfony\Component\HttpFoundation\Request;
5
use Symfony\Component\HttpFoundation\JsonResponse;
6
use keeko\framework\domain\payload\PayloadInterface;
7
use keeko\framework\foundation\AbstractPayloadResponder;
8
use keeko\core\model\LanguageVariant;
9
use keeko\core\model\Localization;
10
use Tobscure\JsonApi\Document;
11
use Tobscure\JsonApi\Collection;
12
use Tobscure\JsonApi\Parameters;
13
14
/**
15
 * Automatically generated JsonResponder for List all language-variants
16
 * 
17
 * @author gossi
18
 */
19
class LanguageVariantListJsonResponder extends AbstractPayloadResponder {
20
21
	/**
22
	 * @param Request $request
23
	 * @param PayloadInterface $payload
24
	 */
25
	public function found(Request $request, PayloadInterface $payload) {
26
		$params = new Parameters($request->query->all());
27
		$data = $payload->get('model');
28
		$serializer = LanguageVariant::getSerializer();
29
		$resource = new Collection($data, $serializer);
30
		$resource = $resource->with($params->getInclude(['localizations']));
31
		$resource = $resource->fields($params->getFields([
1 ignored issue
show
Unused Code introduced by
The call to Parameters::getFields() has too many arguments starting with array('language-variant'...ializer()->getFields()).

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
32
			'language-variant' => LanguageVariant::getSerializer()->getFields(),
33
			'localizations' => Localization::getSerializer()->getFields()
34
		]));
35
		$document = new Document($resource);
36
37
		// meta
38
		$document->setMeta([
39
			'total' => $data->getNbResults(),
40
			'first' => $data->getFirstPage(),
41
			'next' => $data->getNextPage(),
42
			'previous' => $data->getPreviousPage(),
43
			'last' => $data->getLastPage()
44
		]);
45
46
		// return response
47
		return new JsonResponse($document->toArray());
48
	}
49
50
	/**
51
	 */
52
	protected function getPayloadMethods() {
53
		return [
54
			'keeko\framework\domain\payload\Found' => 'found'
55
		];
56
	}
57
}
58