| 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\LaravelSeo\Models; |
||
| 24 | 26 | public function __construct(array $attributes = []) |
|
| 25 | { |
||
| 26 | 26 | parent::__construct($attributes); |
|
| 27 | |||
| 28 | 26 | $this->setConnection(Seo::getConfig('database.connection', null)); |
|
| 29 | 26 | $this->setPrefix(Seo::getConfig('database.prefix', 'seo_')); |
|
| 30 | 26 | } |
|
| 31 | } |
||
| 32 |