GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 3bd11d...3a384d )
by Florian
02:47
created

SearchController::getSearchService()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the Stinger Entity Search package.
5
 *
6
 * (c) Oliver Kotte <[email protected]>
7
 * (c) Florian Meyer <[email protected]>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
namespace StingerSoft\EntitySearchBundle\Controller;
13
14
use StingerSoft\DoctrineCommons\Utils\DoctrineFunctionsInterface;
15
use StingerSoft\EntitySearchBundle\Form\QueryType;
16
use StingerSoft\EntitySearchBundle\Model\Document;
17
use StingerSoft\EntitySearchBundle\Model\PaginatableResultSet;
18
use StingerSoft\EntitySearchBundle\Model\Query;
19
use StingerSoft\EntitySearchBundle\Services\Mapping\DocumentToEntityMapperInterface;
20
use StingerSoft\EntitySearchBundle\Services\SearchService;
21
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
22
use Symfony\Component\HttpFoundation\JsonResponse;
23
use Symfony\Component\HttpFoundation\Request;
24
use Symfony\Component\HttpFoundation\Session\SessionInterface;
25
26
/**
27
 * Basic implementation of a search controller to offer a frontend access to the search service
28
 */
29
class SearchController extends Controller {
30
31
	use SearchControllerTrait;
32
}