Completed
Push — 5.6 ( c5fe0b...561087 )
by Jeroen
19:25 queued 04:42
created

FakeView   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A offsetSet() 0 4 1
1
<?php
2
3
namespace Kunstmaan\AdminBundle\Tests\Helper\FormWidgets;
4
5
use Symfony\Component\Form\FormView;
6
7
class FakeView extends FormView
8
{
9
    public function offsetSet($name, $value)
10
    {
11
        $this->children[$name] = $value;
12
    }
13
}
14