Completed
Pull Request — master (#35)
by Daniel
02:14
created

DateTimeType   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A configureOptions() 0 4 1
A createCell() 0 4 1
1
<?php
2
3
namespace Psi\Component\Grid\Cell;
4
5
use Psi\Component\Grid\CellTypeInterface;
6
use Symfony\Component\OptionsResolver\OptionsResolver;
7
use Psi\Component\Grid\CellInterface;
8
9
class DateTimeType implements CellTypeInterface
10
{
11
    public function configureOptions(OptionsResolver $resolver)
12
    {
13
        $resolver->setDefault('format', 'YYYY-mm-dd HH:ii:ss');
14
    }
15
16
    public function createCell($value, array $options): CellInterface
17
    {
18
        return new DateTimeCell($value, $options);
19
    }
20
}
21
22