| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function createIdentity(int $accountId, string $payload): Entity\Identity |
||
| 23 | { |
||
| 24 | $identity = new Entity\Identity; |
||
| 25 | $identity->genrateToken(); |
||
| 26 | |||
| 27 | $identity->setAccountId($accountId); |
||
| 28 | $identity->setPayload($payload); |
||
| 29 | |||
| 30 | $mapper = new Mapper\Identity($this->storage, $this->lifetime, $this->burndown); |
||
|
|
|||
| 31 | $mapper->store($identity); |
||
| 32 | |||
| 33 | return $identity; |
||
| 34 | } |
||
| 56 |
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