Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2namespace Apie\Common\Interfaces;
3
4use Apie\Core\Entities\EntityInterface;
5
6/**
7 * @template T of EntityInterface
8 */
9interface UserDecorator
10{
11    /**
12     * @return T
13     */
14    public function getEntity(): EntityInterface;
15}