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

ScalarType::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 ScalarType implements CellTypeInterface
10
{
11
    public function configureOptions(OptionsResolver $resolver)
12
    {
13
    }
14
15
    public function createCell($value, array $options): CellInterface
16
    {
17
        return new ScalarCell($value);
18
    }
19
}
20