Simple
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 6
c 1
b 0
f 0
1
<?php
2
/**
3
 * @company MTE Telecom, Ltd.
4
 * @author Ushkov Nikolai <[email protected]>
5
 * Date: 18.04.16
6
 * Time: 18:06
7
 */
8
9
namespace Nnx\DataGrid\Button;
10
11
/**
12
 * Class Simple
13
 * @package Nnx\DataGrid\Button
14
 */
15
class Simple extends AbstractButton
16
{
17
    protected $attributes = [
18
        'class' => 'btn btn-default',
19
    ];
20
}
0 ignored issues
show
Coding Style introduced by
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
21