Completed
Branch feature/pre-split (548a16)
by Anton
03:55
created

NullLocator::locateSources()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * components
4
 *
5
 * @author    Wolfy-J
6
 */
7
namespace Spiral\ORM\Schemas;
8
9
class NullLocator implements LocatorInterface
10
{
11
    /**
12
     * {@inheritdoc}
13
     */
14
    public function locateSchemas(): array
15
    {
16
        return [];
17
    }
18
19
    /**
20
     * {@inheritdoc}
21
     */
22
    public function locateSources(): array
23
    {
24
        return [];
25
    }
26
}