| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2.0116 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 1 | public function __construct($testata) |
|
| 16 | { |
||
| 17 | 1 | if (isset($testata["gridtype"])) { |
|
| 18 | $gridtype = $testata["gridtype"]; |
||
| 19 | } else { |
||
| 20 | 1 | $gridtype = 'Jqgrid'; |
|
| 21 | } |
||
| 22 | 1 | $class = '\\Fi\\CoreBundle\\DependencyInjection\\' . $gridtype . "Dati"; |
|
| 23 | 1 | $this->grid = new $class($testata); |
|
| 24 | 1 | } |
|
| 25 | |||
| 31 |