| Total Complexity | 4 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class DataList extends ArrayList |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $subsequentAuthorSubstitute; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var SubsequentAuthorSubstituteRule |
||
| 31 | */ |
||
| 32 | private $subsequentAuthorSubstituteRule = "complete-all"; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | 98 | public function getSubsequentAuthorSubstitute() |
|
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param string $subsequentAuthorSubstitute |
||
| 44 | */ |
||
| 45 | 12 | public function setSubsequentAuthorSubstitute($subsequentAuthorSubstitute) |
|
| 46 | { |
||
| 47 | 12 | $this->subsequentAuthorSubstitute = $subsequentAuthorSubstitute; |
|
| 48 | 12 | } |
|
| 49 | |||
| 50 | /** |
||
| 51 | * @return SubsequentAuthorSubstituteRule |
||
| 52 | */ |
||
| 53 | 98 | public function getSubsequentAuthorSubstituteRule() |
|
| 54 | { |
||
| 55 | 98 | return $this->subsequentAuthorSubstituteRule; |
|
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @param SubsequentAuthorSubstituteRule $subsequentAuthorSubstituteRule |
||
| 60 | */ |
||
| 61 | 12 | public function setSubsequentAuthorSubstituteRule(SubsequentAuthorSubstituteRule $subsequentAuthorSubstituteRule) |
|
| 64 | 12 | } |
|
| 65 | } |
||
| 66 |