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

DateTimeType::createCell()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 2
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