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