ReferenceProviderInterface
last analyzed

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 13
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
getEntityReference() 0 1 ?
1
<?php
2
3
namespace ScayTrase\Api\Cruds;
4
5
interface ReferenceProviderInterface
6
{
7
    /**
8
     * Returns a reference objects for comparing with Criteria
9
     *
10
     * @param string $fqcn
11
     * @param string $property
12
     * @param mixed  $identifier
13
     *
14
     * @return object|$identifier Reference or $identifier if property is not an association
0 ignored issues
show
Documentation introduced by
The doc-type object|$identifier could not be parsed: Unknown type name "$identifier" at position 7. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
15
     */
16
    public function getEntityReference($fqcn, $property, $identifier);
17
}
18