| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php namespace Arcanedev\LaravelTracker\Models; |
||
| 22 | 6 | public function __construct(array $attributes = []) |
|
| 23 | { |
||
| 24 | 6 | $this->setConnection($this->getConfig('database.connection', null)) |
|
| 25 | 6 | ->setPrefix($this->getConfig('database.prefix', 'tracker_')); |
|
| 26 | |||
| 27 | 6 | parent::__construct($attributes); |
|
| 28 | 6 | } |
|
| 29 | |||
| 47 |