| Total Complexity | 7 |
| Total Lines | 60 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class Settings |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @ORM\Id |
||
| 26 | * @ORM\Column(type="guid") |
||
| 27 | * @ORM\GeneratedValue(strategy="NONE") |
||
| 28 | */ |
||
| 29 | private string $uuid; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @ORM\Column(type="string", nullable=false) |
||
| 33 | */ |
||
| 34 | private string $locale; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @ORM\Column(type="string", nullable=false) |
||
| 38 | */ |
||
| 39 | private string $currency; |
||
| 40 | |||
| 41 | public function __construct(string $uuid, string $locale, string $currency) |
||
| 42 | { |
||
| 43 | $this->uuid = $uuid; |
||
| 44 | $this->locale = $locale; |
||
| 45 | $this->currency = $currency; |
||
| 46 | } |
||
| 47 | |||
| 48 | public function getUuid(): string |
||
| 49 | { |
||
| 50 | return $this->uuid; |
||
| 51 | } |
||
| 52 | |||
| 53 | public function setUuid(string $uuid): self |
||
| 54 | { |
||
| 55 | $this->uuid = $uuid; |
||
| 56 | |||
| 57 | return $this; |
||
| 58 | } |
||
| 59 | |||
| 60 | public function getLocale(): string |
||
| 61 | { |
||
| 62 | return $this->locale; |
||
| 63 | } |
||
| 64 | |||
| 65 | public function setLocale(string $locale): self |
||
| 70 | } |
||
| 71 | |||
| 72 | public function getCurrency(): string |
||
| 75 | } |
||
| 76 | |||
| 77 | public function setCurrency(string $currency): self |
||
| 84 |
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