NoteRef::setIsReference()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 1
1
<?php
2
/**
3
 * php-gedcom.
4
 *
5
 * php-gedcom is a library for parsing, manipulating, importing and exporting
6
 * GEDCOM 5.5 files in PHP 5.3+.
7
 *
8
 * @author          Kristopher Wilson <[email protected]>
9
 * @copyright       Copyright (c) 2010-2013, Kristopher Wilson
10
 * @license         MIT
11
 *
12
 * @link            http://github.com/mrkrstphr/php-gedcom
13
 */
14
15
namespace Gedcom\Record;
16
17
class NoteRef extends \Gedcom\Record implements Sourceable
18
{
19
    protected $_isRef = false;
20
21
    protected $_note = '';
22
23
    protected $_sour = [];
24
25
    public function setIsReference($isReference = true)
26
    {
27
        $this->_isRef = $isReference;
28
    }
29
30
    public function getIsReference()
31
    {
32
        return $this->_isRef;
33
    }
34
35
    public function addSour($sour = [])
36
    {
37
        $this->_sour[] = $sour;
38
    }
39
}
40