Completed
Push — master ( b929a0...bf1c08 )
by wen
14:24
created

Image   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
lcom 0
cbo 2
dl 0
loc 10
rs 10
c 1
b 0
f 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A get() 0 5 1
1
<?php
2
3
namespace Sco\Admin\View;
4
5
class Image extends View
6
{
7
    protected $type = 'image';
8
9
    public function get()
10
    {
11
        $builder = $this->getQuery();
12
        return $builder->get();
13
    }
14
}
15