Code Coverage
 
Lines
Branches
Paths
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace App\Repository;
4
5use App\Entity\Nick;
6use App\Entity\Qualifier;
7use App\Entity\Subject;
8use App\Enum\WordGender;
9
10/**
11 * @author Wilhelm Zwertvaegher
12 */
13interface NickRepositoryInterface
14{
15    public function getById(int $id): ?Nick;
16
17    public function getByProperties(Subject $subject, Qualifier $qualifier, WordGender $targetGender): ?Nick;
18}

Paths

Below are the source code lines that represent each code path as identified by Xdebug. Please note a path is not necessarily coterminous with a line, a line may contain multiple paths and therefore show up more than once. Please also be aware that some paths may include implicit rather than explicit branches, e.g. an if statement always has an else as part of its logical flow even if you didn't write one.

{main}
3namespace App\Repository;
4
5use App\Entity\Nick;
6use App\Entity\Qualifier;
7use App\Entity\Subject;
8use App\Enum\WordGender;
9
10/**
11 * @author Wilhelm Zwertvaegher
12 */
13interface NickRepositoryInterface
14{
15    public function getById(int $id): ?Nick;
16
17    public function getByProperties(Subject $subject, Qualifier $qualifier, WordGender $targetGender): ?Nick;