| Conditions | 3 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 44 | public static function parseUserLink($userId = null, $onEmpty = 'guest', $controllerAction = 'profile/show') |
||
| 45 | { |
||
| 46 | $nick = self::parseUserNick($userId, $onEmpty); |
||
| 47 | // new name is not found, lets return default |
||
| 48 | if ($nick === $onEmpty || (int)$userId < 1) { |
||
| 49 | return $nick; |
||
| 50 | } |
||
| 51 | |||
| 52 | return Url::a([$controllerAction, [(int)$userId]], $nick); |
||
| 53 | } |
||
| 55 |
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