Completed
Push — master ( 82ad84...aad44c )
by Maxim
02:32
created

AbstractCube   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getMigrations() 0 3 1
1
<?php
2
3
namespace WebComplete\core\cube;
4
5
abstract class AbstractCube
6
{
7
8
    /**
9
     * @param $definitions
10
     *
11
     * @return void
12
     */
13
    abstract public function registerDependencies(array &$definitions);
14
15
    /**
16
     * @return array [sort => migration class]
17
     */
18
    public function getMigrations(): array
19
    {
20
        return [];
21
    }
22
}
23