| Total Complexity | 8 |
| Total Lines | 74 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class Sour extends \PhpGedcom\Record |
||
| 18 | { |
||
| 19 | protected $_sour = null; |
||
| 20 | |||
| 21 | protected $_vers = null; |
||
| 22 | |||
| 23 | protected $_name = null; |
||
| 24 | |||
| 25 | protected $_corp = null; |
||
| 26 | |||
| 27 | protected $_data = null; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param Sour\Corp $corp |
||
| 31 | */ |
||
| 32 | public function setCorp($corp = []) |
||
| 33 | { |
||
| 34 | $this->_corp = $corp; |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return Sour\Corp |
||
| 39 | */ |
||
| 40 | public function getCorp() |
||
| 41 | { |
||
| 42 | return $this->_corp; |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param \PhpGedcom\Record\Head\Sour\Data $data |
||
| 47 | */ |
||
| 48 | public function setData($data = []) |
||
| 49 | { |
||
| 50 | $this->_data = $data; |
||
| 51 | } |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return \PhpGedcom\Record\Head\Sour\Data |
||
| 55 | */ |
||
| 56 | public function getData() |
||
| 57 | { |
||
| 58 | return $this->_data; |
||
| 59 | } |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @return Sour\Name |
||
|
|
|||
| 63 | */ |
||
| 64 | public function getName() |
||
| 65 | { |
||
| 66 | return $this->_name; |
||
| 67 | } |
||
| 68 | |||
| 69 | /** |
||
| 70 | * @param Sour\Name |
||
| 71 | */ |
||
| 72 | public function setName($name = []) |
||
| 73 | { |
||
| 74 | $this->_name = $name; |
||
| 75 | } |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @return Sour\Version |
||
| 79 | */ |
||
| 80 | public function getVersion() |
||
| 83 | } |
||
| 84 | |||
| 85 | /** |
||
| 86 | * @param Sour\Version |
||
| 87 | */ |
||
| 88 | public function setVersion($version = []) |
||
| 91 | } |
||
| 92 | } |
||
| 93 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths