Passed
Push — master ( fb7384...4df908 )
by Anton
01:34
created

InverseRelations   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A compute() 0 2 1
1
<?php
2
declare(strict_types=1);
3
/**
4
 * Spiral Framework.
5
 *
6
 * @license   MIT
7
 * @author    Anton Titov (Wolfy-J)
8
 */
9
10
namespace Cycle\Schema\Visitor;
11
12
use Cycle\Schema\Builder;
13
use Cycle\Schema\Definition\Entity;
14
use Cycle\Schema\VisitorInterface;
15
16
class InverseRelations implements VisitorInterface
17
{
18
    /**
19
     * Inverse entity relations.
20
     *
21
     * @param Builder $builder
22
     * @param Entity  $entity
23
     */
24
    public function compute(Builder $builder, Entity $entity)
25
    {
26
27
    }
28
}