| Total Complexity | 5 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Coverage | 66.67% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | final class RegularMarketPrice extends AbstractWriteModel |
||
|
|
|||
| 8 | { |
||
| 9 | public const SHORT_NAME = 'shortName'; |
||
| 10 | public const LONG_NAME = 'longName'; |
||
| 11 | |||
| 12 | private const METADATA = [ |
||
| 13 | self::SHORT_NAME => [ |
||
| 14 | 'type' => self::TYPE_STRING, |
||
| 15 | ], |
||
| 16 | self::LONG_NAME => [ |
||
| 17 | 'type' => self::TYPE_STRING, |
||
| 18 | ], |
||
| 19 | ]; |
||
| 20 | |||
| 21 | protected ?string $fmt = null; |
||
| 22 | protected ?float $raw = null; |
||
| 23 | |||
| 24 | public function getFmt(): ?string |
||
| 27 | } |
||
| 28 | |||
| 29 | 1 | public function setFmt(string $fmt): self |
|
| 34 | } |
||
| 35 | |||
| 36 | public function getRaw(): ?float |
||
| 39 | } |
||
| 40 | |||
| 41 | 1 | public function setRaw(float $raw): self |
|
| 46 | } |
||
| 47 | |||
| 48 | 12 | protected function metadata(): array |
|
| 53 |
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