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

ScalarType   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A configureOptions() 0 3 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 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