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\Specification\Criterion;
4
5use App\Entity\GrammaticalRole;
6use App\Entity\Word;
7
8/**
9 * @author Wilhelm Zwertvaegher
10 */
11interface Criterion
12{
13    /***
14     * @return class-string<Word|GrammaticalRole>
15     */
16    public function getTargetEntity(): string;
17
18    public function getField(): string;
19
20    public function shouldApply(): bool;
21}