Passed
Push — master ( 079fbb...13643b )
by Rafael
36:13
created

Schema::getManagedResourceId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1.037

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
ccs 2
cts 3
cp 0.6667
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 1.037
1
<?php
2
3
namespace ApacheSolrForTypo3\Solr\System\Solr\Schema;
4
5
/***************************************************************
6
 *  Copyright notice
7
 *
8
 *  (c) 2010-2016 Timo Hund <[email protected]
9
 *  All rights reserved
10
 *
11
 *  This script is part of the TYPO3 project. The TYPO3 project is
12
 *  free software; you can redistribute it and/or modify
13
 *  it under the terms of the GNU General Public License as published by
14
 *  the Free Software Foundation; either version 3 of the License, or
15
 *  (at your option) any later version.
16
 *
17
 *  The GNU General Public License can be found at
18
 *  http://www.gnu.org/copyleft/gpl.html.
19
 *
20
 *  This script is distributed in the hope that it will be useful,
21
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
22
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23
 *  GNU General Public License for more details.
24
 *
25
 *  This copyright notice MUST APPEAR in all copies of the script!
26
 ***************************************************************/
27
28
29
/**
30
 * Object representation of the solr schema.
31
 *
32
 * @author Timo Hund <[email protected]>
33
 */
34
class Schema
35
{
36
    /**
37
     * @var string
38
     */
39
    protected $managedResourceId = 'core_en';
40
41
    /**
42
     * @var string
43
     */
44
    protected $name = '';
45
46
    /**
47
     * @return string
48
     */
49 6
    public function getManagedResourceId(): string
50
    {
51 6
        return $this->managedResourceId;
52
    }
53
54
    /**
55
     * @param string $managedResourceId
56
     */
57 7
    public function setManagedResourceId(string $managedResourceId)
58
    {
59 7
        $this->managedResourceId = $managedResourceId;
60 7
    }
61
62
    /**
63
     * @return string
64
     */
65 2
    public function getName(): string
66
    {
67 2
        return $this->name;
68
    }
69
70
    /**
71
     * @param string $name
72
     */
73 7
    public function setName(string $name)
74
    {
75 7
        $this->name = $name;
76 7
    }
77
}
78