Passed
Push — master ( 1b8200...cdf526 )
by Timo
21:46
created

SolrControllerContext   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 45
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 4
lcom 0
cbo 0
dl 0
loc 45
ccs 10
cts 10
cp 1
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A setTypoScriptConfiguration() 0 4 1
A getTypoScriptConfiguration() 0 4 1
A setSearchResultSet() 0 4 1
A getSearchResultSet() 0 4 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