Completed
Push — master ( d7f3a5...d6e5bd )
by
unknown
95:27 queued 72:17
created

FakeView::offsetSet()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
nc 1
cc 1
nop 2
1
<?php
2
3
namespace Kunstmaan\AdminBundle\Tests\unit\Helper\FormWidgets;
4
5
use Symfony\Component\Form\FormView;
6
7
class FakeView extends FormView
8
{
9
    /**
10
     * @param $name
11
     * @param $value
12
     */
13
    public function offsetSet($name, $value)
14
    {
15
        $this->children[$name] = $value;
16
    }
17
}