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

Image::get()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
dl 0
loc 5
rs 9.4285
c 1
b 0
f 1
cc 1
eloc 3
nc 1
nop 0
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