Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 66.67% |
Changes | 0 |
1 | <?php |
||
7 | class ObjectToTabellaExtension extends \Twig_Extension |
||
8 | { |
||
9 | |||
10 | public function getFunctions() |
||
15 | ); |
||
16 | } |
||
17 | |||
18 | 6 | public function object2View($object, $type = null) |
|
19 | { |
||
20 | 6 | $dfr = new DoctrineFieldReader($object); |
|
21 | 6 | return $dfr->object2View($object, $type); |
|
22 | } |
||
23 | |||
24 | 6 | public function field2Object($fieldtoobj, $object) |
|
28 | } |
||
29 | } |
||
30 |