Completed
Push — master ( ae2bb1...bae126 )
by Denis
14s queued 11s
created

DeleteAction::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Woo\GridView\Columns\Actions;
4
5
class DeleteAction extends Action
6
{
7
    public function __construct(string $url, string $content = '<i class="fa fa-trash-alt"></i>')
8
    {
9
        parent::__construct($url, $content, 'DELETE');
10
    }
11
}