HistoryAction   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 6
c 1
b 0
f 0
dl 0
loc 10
ccs 0
cts 5
cp 0
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A render() 0 6 1
1
<?php
2
3
namespace Yaro\Jarboe\Table\Actions;
4
5
class HistoryAction extends AbstractAction
6
{
7
    protected $ident = 'history';
8
9
    public function render($model = null)
10
    {
11
        return view('jarboe::crud.actions.history', [
12
            'crud' => $this->crud(),
13
            'model' => $model,
14
            'action' => $this,
15
        ]);
16
    }
17
}
18