Completed
Push — master ( 35be3a...ef8e90 )
by Vitaly
02:55
created

TableTrait   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 2
dl 0
loc 10
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A analyze() 0 4 1
1
<?php
2
//[PHPCOMPRESSOR(remove,start)]
3
/**
4
 * Created by PhpStorm.
5
 * User: nazarenko
6
 * Date: 29.03.2016
7
 * Time: 11:21
8
 */
9
namespace samsoncms\api\generator\analyzer;
10
11
use samsoncms\api\generator\metadata\GenericMetadata;
12
13
/**
14
 * Table trait analyzer.
15
 *
16
 * @package samsoncms\api\analyzer
17
 */
18
class TableTrait extends GenericAnalyzer
19
{
20
    /**
21
     * @return \samsoncms\api\generator\metadata\GenericMetadata[]
22
     */
23
    public function analyze()
24
    {
25
        return [new GenericMetadata()];
26
    }
27
}
28
//[PHPCOMPRESSOR(remove,end)]
29