Completed
Branch master (49dc1a)
by Yaro
01:42
created

HistoryAction   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 13
ccs 0
cts 5
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A render() 0 8 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