Completed
Pull Request — master (#34)
by Daniel
02:15
created

ViewMetadata::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 3
nc 2
nop 2
1
<?php
2
3
namespace Psi\Component\Grid\Metadata;
4
5
class ViewMetadata extends AbstractConfigurable
6
{
7
    public function __construct(string $type = null, array $options = [])
8
    {
9
        $type = $type ? : 'scalar';
10
11
        parent::__construct($type, $options);
12
    }
13
}
14