| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class Amount extends BaseComponent { |
||
| 16 | |||
| 17 | /** @var string */ |
||
| 18 | protected $CurrencyID; |
||
| 19 | |||
| 20 | /** @var decimal */ |
||
|
|
|||
| 21 | protected $Value; |
||
| 22 | |||
| 23 | public function __construct($Value, $CurrencyID) { |
||
| 24 | $this->Value = $Value; |
||
| 25 | $this->CurrencyID = $CurrencyID; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function xmlSerialize(Writer $writer) { |
||
| 34 | ] |
||
| 35 | ]); |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getCurrencyID() { |
||
| 40 | } |
||
| 41 | |||
| 42 | public function getValue() { |
||
| 47 |
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