Passed
Push — master ( 0720cb...a95893 )
by Timo
02:36
created

SolrControllerContext::getSearchResultSet()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
namespace ApacheSolrForTypo3\Solr\Mvc\Controller;
3
4
/*
5
 * This file is part of the TYPO3 CMS project.
6
 *
7
 * It is free software; you can redistribute it and/or modify it under
8
 * the terms of the GNU General Public License, either version 2
9
 * of the License, or any later version.
10
 *
11
 * For the full copyright and license information, please read the
12
 * LICENSE.txt file that was distributed with this source code.
13
 *
14
 * The TYPO3 project - inspiring people to share!
15
 */
16
17
use ApacheSolrForTypo3\Solr\Domain\Search\ResultSet\SearchResultSet;
18
use ApacheSolrForTypo3\Solr\System\Configuration\TypoScriptConfiguration;
19
use TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext;
20
21
/**
22
 * Class SolrControllerContext
23
 *
24
 * @author Frans Saris <[email protected]>
25
 * @author Timo Hund <[email protected]>
26
 * @package ApacheSolrForTypo3\Solr\Mvc\Controller
27
 */
28
class SolrControllerContext extends ControllerContext
29
{
30
31
    /**
32
     * @var TypoScriptConfiguration
33
     */
34
    protected $typoScriptConfiguration;
35
36
    /**
37
     * @var SearchResultSet
38
     */
39
    protected $searchResultSet;
40
41
    /**
42
     * @param TypoScriptConfiguration $typoScriptConfiguration
43
     */
44 29
    public function setTypoScriptConfiguration(TypoScriptConfiguration $typoScriptConfiguration)
45
    {
46 29
        $this->typoScriptConfiguration = $typoScriptConfiguration;
47 29
    }
48
49
    /**
50
     * @return TypoScriptConfiguration
51
     */
52 27
    public function getTypoScriptConfiguration()
53
    {
54 27
        return $this->typoScriptConfiguration;
55
    }
56
57
    /**
58
     * @param SearchResultSet $searchResultSet
59
     */
60 25
    public function setSearchResultSet(SearchResultSet $searchResultSet)
61
    {
62 25
        $this->searchResultSet = $searchResultSet;
63 25
    }
64
65
    /**
66
     * @return SearchResultSet
67
     */
68 26
    public function getSearchResultSet()
69
    {
70 26
        return $this->searchResultSet;
71
    }
72
}
73