Completed
Push — master ( e12b56...1fb17f )
by Anton
01:36
created

InverseRelations::compute()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
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
}