Passed
Pull Request — master (#21)
by Pavel
07:03 queued 11s
created

ReferenceProviderInterface.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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
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