Completed
Push — master ( e12b56...1fb17f )
by Anton
01:36
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\Processor;
11
12
use Cycle\Schema\Registry;
13
use Cycle\Schema\Definition\Entity;
14
use Cycle\Schema\ProcessorInterface;
15
16
class InverseRelations implements ProcessorInterface
17
{
18
    /**
19
     * Inverse entity relations.
20
     *
21
     * @param Registry $registry
22
     * @param Entity   $entity
23
     */
24
    public function compute(Registry $registry, Entity $entity)
25
    {
26
27
    }
28
}