| Total Complexity | 6 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class Store extends Object { |
||
|
|
|||
| 21 | |||
| 22 | // These parameters should reflect table columns in a database |
||
| 23 | private $SiteKey = ''; |
||
| 24 | private $SiteHost = ''; |
||
| 25 | |||
| 26 | public function getSiteKey(): string |
||
| 27 | { |
||
| 28 | return $this->SiteKey; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getSiteHost(): string |
||
| 32 | { |
||
| 33 | return $this->SiteHost; |
||
| 34 | } |
||
| 35 | |||
| 36 | public static function find_or_make(string $site_key, string $host = ''): Store |
||
| 56 | } |
||
| 57 | } |
||
| 58 |
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